Skip to content

Commit

Permalink
Fixing lint issue in web_debugger black box test. (#321)
Browse files Browse the repository at this point in the history
b/277955457
  • Loading branch information
aee-google authored May 10, 2023
1 parent 2f5eb92 commit 27bf539
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cobalt/black_box_tests/tests/web_debugger.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def wait_event(self, method):
# "Debugger.scriptParsed" events get sent as artifacts of the debugger
# backend implementation running its own injected code, so they are ignored
# unless that's what we're waiting for.
allow_script_parsed = (method == 'Debugger.scriptParsed')
allow_script_parsed = method == 'Debugger.scriptParsed'

# Pop already-received events from the event queue.
def _next_event():
Expand Down

0 comments on commit 27bf539

Please sign in to comment.