Skip to content

Commit 3b62802

Browse files
author
Sebastian Molenda
committed
missing required package
1 parent d853b9e commit 3b62802

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

requirements-dev.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ flake8
55
pytest
66
pytest-asyncio
77
httpx
8+
h2
89
requests
910
aiohttp
1011
cbor2

tests/acceptance/subscribe/steps/then_steps.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ async def step_impl(ctx: PNContext, wait_time: str):
7676
@then(u'I observe the following Events and Invocations of the Presence EE')
7777
@async_run_until_complete
7878
async def step_impl(ctx):
79+
await asyncio.sleep(2)
80+
7981
def parse_log_line(line: str):
8082
line_type = 'event' if line.startswith('Triggered event') else 'invocation'
8183
m = re.search('([A-Za-z])+(Event|Invocation)', line)

0 commit comments

Comments
 (0)