Skip to content

Commit

Permalink
fix W5 condition
Browse files Browse the repository at this point in the history
  • Loading branch information
Yicong-Huang committed Nov 15, 2024
1 parent d9e6578 commit 8ae83a4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def add_simulated_breakpoint(self):
elif self.test == "W5":
# For W5:
self.main_loop.simulate_debug_command(
"b 23, sum(1 for token in doc if token.pos_ == 'NOUN') > 3"
"b 23, sum(1 for token in doc if token.pos_ == 'NOUN') > 3 and 'hello' in tuple_['text']"
)

elif "W6" in self.test:
Expand Down

0 comments on commit 8ae83a4

Please sign in to comment.