Skip to content

Commit

Permalink
fixing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tgoelles committed Oct 4, 2023
1 parent 405422d commit d723a24
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ def test_len(testdata_specim: SpecArray):


def test_getitem(testdata_specim: SpecArray):
check.equal(testdata_specim[0].shape, (1024, 448))
check.equal(testdata_specim[1].shape, (1024, 448))
check.equal(testdata_specim[0].shape, (448, 1024))
check.equal(testdata_specim[1].shape, (448, 1024))
check.is_instance(testdata_specim[0], DataArray)


def test_shape(testdata_specim: SpecArray):
check.equal(testdata_specim.shape, (2, 1024, 448))
check.equal(testdata_specim.shape, (2, 448, 1024))


def test_spectral_albedo(testdata_specim: SpecArray):
Expand Down

0 comments on commit d723a24

Please sign in to comment.