We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9680d2 commit 8a2f131Copy full SHA for 8a2f131
src/tests/conftest.py
@@ -31,6 +31,7 @@ def __init__(self, log):
31
for i in range(5):
32
print(f"{i=}", flush=True)
33
reponse = self.ws.recv()
34
+ print(f"{reponse=}", flush=True)
35
36
def call(self, rpc, params=[{}]):
37
print(f"{rpc=} {params=}", flush=True)
@@ -60,8 +61,8 @@ def get_response(self):
60
61
return response
62
63
def compare_image(self, nb_messages, filename):
- for i in range(nb_messages):
64
- print(f"{i=}", flush=True)
+ for message in range(nb_messages):
65
+ print(f"{message=}", flush=True)
66
image = self.ws.recv()
67
if isinstance(image, bytes):
68
test_file_path = os.path.abspath(
0 commit comments