Browse Source

Completed development. Now implementing tests to get the desired output.

Dawson 1 month ago
parent
commit
ccc4c74f06
1 changed files with 1 additions and 3 deletions
  1. 1 3
      src/test/java/me/dawson/tests/impl/UnexpectedBehaviorTest.java

+ 1 - 3
src/test/java/me/dawson/tests/impl/UnexpectedBehaviorTest.java

@@ -8,9 +8,7 @@ public class UnexpectedBehaviorTest extends Tester {
 
     @Test
     void noArguments() {
-        String output = getCapturedOutput(() -> {
-            me.dawson.teleport.Main.main(new String[]{});
-        });
+        String output = getCapturedOutput(() -> Main.main(new String[]{}));
 
         assertEquals("No arguments provided! Shutting down...\n", output);
     }