Skip to content

Commit

Permalink
Fixed typo in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mihaiboldeanu committed Aug 31, 2023
1 parent 4fa1c51 commit c08a9d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions echopype/tests/utils/test_utils_mask_transformation.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ def test_log():
assert echopype.utils.mask_transformation.log(0) == -999

# Test with a list of numbers
assert echopype.utils.mask_transformation.log([10, 20, -10, 0]) == [
assert echopype.utils.mask_transformation.log([10, 100, -10, 0]) == [
10 * np.log10(10),
10 * np.log10(20),
10 * np.log10(100),
-999,
-999,
]
Expand Down

0 comments on commit c08a9d1

Please sign in to comment.