Skip to content

Commit

Permalink
fix async tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dangell7 committed Feb 2, 2024
1 parent e175d20 commit f6d6299
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@


class TestExecutionUtility(AsyncioIntegrationTestCase):
async def async_test_executions_from_meta(cls):
async def test_async_executions_from_meta(cls):
async with cls.context.client as _:
hook = create_hook_payload(
SetHookParams(
Expand Down Expand Up @@ -60,7 +60,7 @@ async def async_test_executions_from_meta(cls):
cls.context.client, cls.context.hook1.seed, [clear_hook]
)

async def async_test_executions_from_tx_hash(cls):
async def test_async_executions_from_tx_hash(cls):
async with cls.context.client as _:
hook = create_hook_payload(
SetHookParams(
Expand Down Expand Up @@ -107,7 +107,7 @@ async def async_test_executions_from_tx_hash(cls):
cls.context.client, cls.context.hook1.seed, [clear_hook]
)

async def async_test_emissions_from_meta(cls):
async def test_async_emissions_from_meta(cls):
async with cls.context.client as _:
hook = create_hook_payload(
SetHookParams(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@


class TestStateUtility(AsyncioIntegrationTestCase):
async def async_test_get_hook(cls):
async def test_async_get_hook(cls):
async with cls.context.client as _:
hook = create_hook_payload(
SetHookParams(
Expand Down Expand Up @@ -60,7 +60,7 @@ async def async_test_get_hook(cls):
cls.context.client, cls.context.hook1.seed, [clear_hook]
)

async def async_test_get_hook_definition(cls):
async def test_async_get_hook_definition(cls):
async with cls.context.client as _:
hook = create_hook_payload(
SetHookParams(
Expand Down Expand Up @@ -105,7 +105,7 @@ async def async_test_get_hook_definition(cls):
cls.context.client, cls.context.hook1.seed, [clear_hook]
)

async def async_test_hook_state_dir(cls):
async def test_async_hook_state_dir(cls):
async with cls.context.client as _:
hook = create_hook_payload(
SetHookParams(
Expand Down Expand Up @@ -150,7 +150,7 @@ async def async_test_hook_state_dir(cls):
cls.context.client, cls.context.hook1.seed, [clear_hook]
)

async def async_test_hook_state(cls):
async def test_async_hook_state(cls):
async with cls.context.client as _:
hook = create_hook_payload(
SetHookParams(
Expand Down

0 comments on commit f6d6299

Please sign in to comment.