Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanmontt committed Oct 20, 2023
1 parent 9638297 commit 94a41cc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/IllimaniProfiler-Tests/IllAbstractProfilerTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -92,15 +92,15 @@ IllAbstractProfilerTest >> testSamplingRateVariable [

"By default, do not sample"
self assert: profiler samplingRate equals: 1.

"Sample at 20%"
profiler samplingRate: 20.
self assert: profiler samplingRate equals: 20 / 100.

"Sample at 75%"
profiler samplingRate: 75.
self assert: profiler samplingRate equals: 75 / 100.

"Do not sample. The same as sampling 100%".
profiler samplingRate: 100.
self assert: profiler samplingRate equals: 1.
Expand Down

0 comments on commit 94a41cc

Please sign in to comment.