From b4b7859df059b6cfdb6706bb70af593d2c0f7902 Mon Sep 17 00:00:00 2001 From: courtneyeh Date: Mon, 15 Apr 2024 15:05:28 +1000 Subject: [PATCH] Rename tests --- .../teku/statetransition/util/DebugDataDumperTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);