Skip to content

Commit 8a2f131

Browse files
test print
1 parent f9680d2 commit 8a2f131

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/tests/conftest.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ def __init__(self, log):
3131
for i in range(5):
3232
print(f"{i=}", flush=True)
3333
reponse = self.ws.recv()
34+
print(f"{reponse=}", flush=True)
3435

3536
def call(self, rpc, params=[{}]):
3637
print(f"{rpc=} {params=}", flush=True)
@@ -60,8 +61,8 @@ def get_response(self):
6061
return response
6162

6263
def compare_image(self, nb_messages, filename):
63-
for i in range(nb_messages):
64-
print(f"{i=}", flush=True)
64+
for message in range(nb_messages):
65+
print(f"{message=}", flush=True)
6566
image = self.ws.recv()
6667
if isinstance(image, bytes):
6768
test_file_path = os.path.abspath(

0 commit comments

Comments
 (0)