Skip to content

Commit aa67956

Browse files
committed
Fix python raster reader strict eval test condition
Signed-off-by: Jason T. Brown <[email protected]>
1 parent 4aef6ea commit aa67956

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyrasterframes/src/main/python/tests/PyRasterFramesTests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -714,7 +714,7 @@ def test_strict_eval(self):
714714
# again for strict
715715
df_strict = self.spark.read.raster(self.img_uri, lazy_tiles=False)
716716
show_str_strict = df_strict.select('proj_raster')._jdf.showString(1, -1, False)
717-
self.assertTrue('RasterRef' not in show_str_lazy)
717+
self.assertTrue('RasterRef' not in show_str_strict)
718718

719719

720720
def test_prt_functions(self):

0 commit comments

Comments
 (0)