Skip to content

Commit

Permalink
fix failing test due to list order
Browse files Browse the repository at this point in the history
  • Loading branch information
JessicaS11 committed Nov 21, 2023
1 parent 3fb4c48 commit 283fc04
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions icepyx/tests/test_quest.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def test_add_argo(quest_instance):
assert type(obs) == dict
assert exp_key in obs.keys()
assert type(obs[exp_key]) == exp_type
assert quest_instance.datasets[exp_key].params == params
assert set(quest_instance.datasets[exp_key].params) == set(params)


def test_add_multiple_datasets(quest_instance):
Expand Down Expand Up @@ -72,8 +72,8 @@ def test_search_all(quest_instance):
"kwargs",
[
{"icesat2": {"IDs": True}},
{"argo":{"presRange":"10,500"}},
{"icesat2":{"IDs":True}, "argo":{"presRange":"10,500"}}
{"argo": {"presRange": "10,500"}},
{"icesat2": {"IDs": True}, "argo": {"presRange": "10,500"}},
],
)
def test_search_all_kwargs(quest_instance, kwargs):
Expand Down

0 comments on commit 283fc04

Please sign in to comment.