Skip to content

Commit

Permalink
fix: unique timestamp issue
Browse files Browse the repository at this point in the history
  • Loading branch information
arifBurakDemiray committed Dec 6, 2023
1 parent 9599565 commit 794db39
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ private void validateCrashInRQ(Throwable expectedError, boolean fatal, JSONObjec
JSONObject crashObj = new JSONObject(rq[0].get("crash"));
Assert.assertEquals(customSegment == null ? 19 : 20, crashObj.length());

Assert.assertTrue(crashObj.getDouble("_run") > 0);
Assert.assertTrue(crashObj.getDouble("_run") >= 0);
Assert.assertTrue(crashObj.getInt("_disk_total") > 0);
Assert.assertTrue(crashObj.getInt("_disk_current") > 0);
Assert.assertTrue(crashObj.getInt("_ram_current") > 0);
Expand Down

0 comments on commit 794db39

Please sign in to comment.