File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
pyrasterframes/python/tests Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -121,11 +121,11 @@ def test_aggregations(self):
121121 aggs .show ()
122122 row = aggs .first ()
123123
124- self .assertTrue (_rounded_compare (row ['agg_mean(tile)' ], 10161 ))
124+ self .assertTrue (_rounded_compare (row ['agg_mean(tile)' ], 10160 ))
125125 print (row ['agg_data_cells(tile)' ])
126- self .assertTrue (row ['agg_data_cells(tile)' ] == 388000 )
127- self .assertTrue (row ['agg_nodata_cells(tile)' ] == 0 )
128- self .assertTrue (row ['aggStats(tile)' ].dataCells == row ['agg_data_cells(tile)' ])
126+ self .assertEqual (row ['agg_data_cells(tile)' ], 387000 )
127+ self .assertEqual (row ['agg_nodata_cells(tile)' ], 1000 )
128+ self .assertEqual (row ['aggStats(tile)' ].dataCells , row ['agg_data_cells(tile)' ])
129129
130130
131131 def test_sql (self ):
You can’t perform that action at this time.
0 commit comments