Skip to content

Commit

Permalink
Fix nasty assert in goth test code (#2803)
Browse files Browse the repository at this point in the history
  • Loading branch information
scx1332 authored Oct 2, 2023
1 parent 502402e commit a7ede57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion goth_tests/e2e/vm/test_e2e_outbound_perf.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ async def test_e2e_outbound_perf(
if 'outbound-test' in info.aliases:
server_addr = info.address
break
assert(server_addr is not None, "Can't find container `outbound-test`")
assert(server_addr is not None) # "Can't find container `outbound-test`"
logger.info("outbound-test container found at %s", server_addr)

requestor = runner.get_probes(probe_type=RequestorProbe)[0]
Expand Down

0 comments on commit a7ede57

Please sign in to comment.