No need for formatter comments here

This commit is contained in:
Gary Gregory 2024-09-04 10:59:31 -04:00
parent 21f0069882
commit 95d15cdebd
1 changed files with 0 additions and 2 deletions

View File

@ -209,11 +209,9 @@ public class StopWatchTest extends AbstractLangTest {
@Test
public void testGetSplitDuration() {
// Create a mock StopWatch with a time of 2:59:01.999
// @formatter:off
final StopWatch watch = StopWatch.createStarted();
watch.split();
set(watch, 123456);
// @formatter:on
assertEquals(Duration.ofNanos(123456), watch.getSplitDuration());
}