Skip to content

Commit 5d28bbb

Browse files
committed
update default timeout to 0.01
Signed-off-by: emdneto <[email protected]>
1 parent 6583a83 commit 5d28bbb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/opentelemetry-test-utils/src/opentelemetry/test/asgitestutil.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,10 @@ async def send_input(self, message):
100100
async def send_default_request(self):
101101
await self.send_input({"type": "http.request", "body": b""})
102102

103-
async def get_output(self, timeout=1):
103+
async def get_output(self, timeout=0.01):
104104
return await self.communicator.receive_output(timeout)
105105

106-
async def get_all_output(self, timeout=1):
106+
async def get_all_output(self, timeout=0.01):
107107
outputs = []
108108
while True:
109109
try:

0 commit comments

Comments
 (0)