Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix lint error
  • Loading branch information
xqi-splunk committed Jun 20, 2025
commit c0a3bea600745a3203b7483bfdcb02a160507081
6 changes: 1 addition & 5 deletions contentctl/objects/correlation_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -1025,10 +1025,6 @@ def test(
while current_turn <= max_retries:
current_turn += 1

self.logger.info(
f"Skipping sleeping time for testing purposes"
)

# reset the result to None on each loop iteration
result = self.validate_risk_notable_events()

Expand All @@ -1041,7 +1037,7 @@ def test(
)
break

if result != None and result.status == TestResultStatus.FAIL:
if result is not None and result.status == TestResultStatus.FAIL:
elapsed = 0

for i in range(10):
Expand Down
Loading