Skip to content

Commit

Permalink
removed print, reduced time wait
Browse files Browse the repository at this point in the history
  • Loading branch information
midays committed May 12, 2024
1 parent a87540c commit 28b45ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/models/IDE/VisualStudioCode.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ def run_simple_analysis(self, configuration_name: str):
self.press_keys("enter")

# Verify analysis has started
time.sleep(5)
time.sleep(3)
terminal_lines = self.copy_terminal_output()
log_map = parse_log_string(terminal_lines[6])
print(log_map)

assert is_date_today(log_map["time"])
assert log_map["msg"] == "running source code analysis"

Expand Down

0 comments on commit 28b45ac

Please sign in to comment.