Skip to content

Commit

Permalink
fix: Test fix (#127)
Browse files Browse the repository at this point in the history
* fix: for ssh testing

* fix: test fix

* fix: indent

* fix: revert
  • Loading branch information
sattvikc authored Sep 4, 2024
1 parent de437b0 commit 0eb1566
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -907,7 +907,7 @@ private void measureOperations(Main main) throws Exception {
return null;
});
System.out.println("User pagination " + time);
assert time < 8000;
assert time < 10000;
}
{ // Measure update user metadata
long time = measureTime(() -> {
Expand Down Expand Up @@ -944,7 +944,7 @@ private void measureOperations(Main main) throws Exception {
return null;
});
System.out.println("User counting: " + time);
assert time < 3000;
assert time < 12000;
}
{ // measure telemetry
long time = measureTime(() -> {
Expand All @@ -957,7 +957,7 @@ private void measureOperations(Main main) throws Exception {
return null;
});
System.out.println("Telemetry: " + time);
assert time < 3000;
assert time < 6000;
}

assertEquals(0, errorCount.get());
Expand Down

0 comments on commit 0eb1566

Please sign in to comment.