Skip to content

Commit

Permalink
Test dask equality with a small chunk
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewdhicks committed Sep 13, 2016
1 parent 83aefe4 commit a51f3d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration_tests/test_end_to_end.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def check_open_with_dc(index):
lazy_dataset = dc.load(product='ls5_nbar_albers', latitude=(-35.2, -35.3), longitude=(149.1, 149.2),
dask_chunks={'time': 1})
assert lazy_dataset['blue'].data.dask
# assert lazy_dataset.equals(dataset)
assert lazy_dataset.blue[:2, :100, :100].equals(dataset.blue[:2, :100, :100])

dataset_like = dc.load(product='ls5_nbar_albers', measurements=['blue'], like=dataset)
assert (dataset.blue == dataset_like.blue).all()
Expand Down

0 comments on commit a51f3d8

Please sign in to comment.