Skip to content

Commit

Permalink
keys
Browse files Browse the repository at this point in the history
  • Loading branch information
Borda committed Oct 16, 2024
1 parent ce19201 commit 68956bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_core_lookup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

def test_get_default_params():
params = get_default_params()
assert tuple(sorted(params)) == (
assert sorted(vars(params).keys()) == [
"allow_none",
"backend",
"cache_dir",
Expand All @@ -20,7 +20,7 @@ def test_get_default_params():
"separate_files",
"stale_after",
"wait_for_calc_timeout",
)
]


def test_bad_name(name="nope"):
Expand Down

0 comments on commit 68956bf

Please sign in to comment.