From d996f994fdd6aaa057826f5c7e6a55b0d2246b9d Mon Sep 17 00:00:00 2001 From: wrjgold Date: Tue, 17 Sep 2024 21:14:31 +0800 Subject: [PATCH] Fix wrongly named test package --- .../java/tick/{command => commands}/DeleteCommandTest.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) rename src/test/java/tick/{command => commands}/DeleteCommandTest.java (93%) diff --git a/src/test/java/tick/command/DeleteCommandTest.java b/src/test/java/tick/commands/DeleteCommandTest.java similarity index 93% rename from src/test/java/tick/command/DeleteCommandTest.java rename to src/test/java/tick/commands/DeleteCommandTest.java index c09e92c3da..cf10c85481 100644 --- a/src/test/java/tick/command/DeleteCommandTest.java +++ b/src/test/java/tick/commands/DeleteCommandTest.java @@ -1,11 +1,10 @@ -package tick.command; +package tick.commands; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.fail; import org.junit.jupiter.api.Test; -import tick.commands.DeleteCommand; import tick.exceptions.TickException; import tick.storage.Storage; import tick.storage.TaskList;