Skip to content

Commit

Permalink
revert wait loops change
Browse files Browse the repository at this point in the history
  • Loading branch information
rochdev committed Nov 21, 2024
1 parent ffc2c89 commit c30573f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/parametric/test_crashtracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ class Test_Crashtracking:
def test_report_crash(self, test_agent, test_library):
test_library.crash()

event = test_agent.wait_for_telemetry_event("logs", wait_loops=1000)
event = test_agent.wait_for_telemetry_event("logs", wait_loops=400)
assert self.is_crash_report(test_library, event)

@pytest.mark.parametrize("library_env", [{"DD_CRASHTRACKING_ENABLED": "true"}])
def test_enable_crashtracking(self, test_agent, test_library):
test_library.crash()

event = test_agent.wait_for_telemetry_event("logs", wait_loops=1000)
event = test_agent.wait_for_telemetry_event("logs", wait_loops=400)
assert self.is_crash_report(test_library, event)

@pytest.mark.parametrize("library_env", [{"DD_CRASHTRACKING_ENABLED": "false"}])
Expand Down

0 comments on commit c30573f

Please sign in to comment.