Skip to content

Commit

Permalink
Fix size issue with integration test.
Browse files Browse the repository at this point in the history
  • Loading branch information
naschmitz committed Nov 3, 2023
1 parent 356c367 commit bee0d54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xee/ext_integration_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ def test_parses_ee_url(self):
scale=25.0, # in degrees
n_images=3,
)
self.assertEqual(dict(ds.dims), {'time': 3, 'lon': 15, 'lat': 8})
self.assertEqual(dict(ds.dims), {'time': 3, 'lon': 15, 'lat': 7})

def test_data_sanity_check(self):
# This simple test uncovered a bug with the default definition of `scale`.
Expand Down

0 comments on commit bee0d54

Please sign in to comment.