Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: SarahAlidoost <55081872+SarahAlidoost@users.noreply.github.com>
  • Loading branch information
rogerkuou and SarahAlidoost committed Mar 26, 2024
1 parent 866c58e commit 7ee2325
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,10 @@ def test_stack_pointselection_nan(self):
threshold=100, method="amplitude_dispersion"
)
assert stm.space.shape[0] == 99 # only the nan is removed
assert set([k for k in stm.coords.keys()]).issubset(
assert set(list(stm.coords.keys())).issubset(
["time", "azimuth", "range"]
)
assert set([d for d in stm.data_vars.keys()]).issubset(
assert set(list(stm.data_vars.keys())).issubset(
["complex", "amplitude", "phase"]
)

Expand Down

0 comments on commit 7ee2325

Please sign in to comment.