Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mdipierro committed May 24, 2024
1 parent 14f5e4f commit 03ee327
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_fixture.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def init(key, a, evnt_done=None, evnt_play=None):
return init


def test_fixtute_local_storage(init_foo):
def test_fixture_local_storage(init_foo):
assert init_foo("t1", "a1") is foo
evnt_done = threading.Event()
evnt_play = threading.Event()
Expand All @@ -66,7 +66,7 @@ def test_fixtute_local_storage(init_foo):
assert ",".join(result["seq"]) == "t1,t2,t3"


def test_fixtute_error():
def test_fixture_error():
before_request()
# attempt to access _safe_local prop without on_request-call
with pytest.raises(RuntimeError) as err:
Expand Down

0 comments on commit 03ee327

Please sign in to comment.