Skip to content

Commit

Permalink
Merge pull request #7753 from fstagni/90_fixes9
Browse files Browse the repository at this point in the history
fix: the test can take a fraction of a second
  • Loading branch information
fstagni committed Aug 13, 2024
2 parents fd7bb26 + 9be92ad commit 9f95f61
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ def test_processQuickExecutionNoWatchdog(mocker):
assert result["Value"]["payloadStatus"] == 0
assert result["Value"]["payloadOutput"] == "hello"
assert not result["Value"]["payloadExecutorError"]
assert result["Value"]["cpuTimeConsumed"][0] == 0.0
assert result["Value"]["cpuTimeConsumed"][0] >= 0.0
assert not result["Value"]["watchdogError"]
assert not result["Value"]["watchdogStats"]

Expand Down

0 comments on commit 9f95f61

Please sign in to comment.