Skip to content

Commit

Permalink
fix testDefaultValues
Browse files Browse the repository at this point in the history
  • Loading branch information
rami-prilutsky authored Jan 31, 2021
1 parent cefe98e commit d9fc8da
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public void testDefaultValues() {

assertEquals(60, profileRequest.getDurationSeconds());
assertEquals(5_000_000, profileRequest.getFrameBufferSize());
assertEquals(10, profileRequest.getSamplingIntervalMs().intValue());
assertEquals(1, profileRequest.getSamplingIntervalMs().intValue());
assertEquals(10_000_000, profileRequest.getSamplingIntervalBytes().intValue());
assertEquals("cpu", profileRequest.getEventType());
assertEquals("svg", profileRequest.getFormat());
Expand Down Expand Up @@ -50,4 +50,4 @@ public void testIsFlameGraphRequest() {
profileRequest.setFormat("a");
assertFalse(profileRequest.isFlameGraphRequest());
}
}
}

0 comments on commit d9fc8da

Please sign in to comment.