diff --git a/ethereum/statetransition/src/test/java/tech/pegasys/teku/statetransition/util/DebugDataDumperTest.java b/ethereum/statetransition/src/test/java/tech/pegasys/teku/statetransition/util/DebugDataDumperTest.java index 5d5f4ead53c..cf2773f0810 100644 --- a/ethereum/statetransition/src/test/java/tech/pegasys/teku/statetransition/util/DebugDataDumperTest.java +++ b/ethereum/statetransition/src/test/java/tech/pegasys/teku/statetransition/util/DebugDataDumperTest.java @@ -187,7 +187,7 @@ void constructionOfDirectories_shouldDisableWhenFailedToCreate(@TempDir Path tem } @Test - void formatTimestamp_shouldFormatDate() { + void formatOptionalTimestamp_shouldFormatTimestamp() { final DebugDataDumper manager = new DebugDataDumper(Path.of("."), true); final String formattedTimestamp = manager.formatOptionalTimestamp(Optional.of(timeProvider.getTimeInMillis()), timeProvider); @@ -196,7 +196,7 @@ void formatTimestamp_shouldFormatDate() { } @Test - void generateTimestamp_shouldGenerateTimestamp() { + void formatOptionalTimestamp_shouldGenerateTimestamp() { final DebugDataDumper manager = new DebugDataDumper(Path.of("."), true); final String formattedTimestamp = manager.formatOptionalTimestamp(Optional.empty(), timeProvider);