Răsfoiți Sursa

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

Dawson 1 lună în urmă
părinte
comite
ccc4c74f06

+ 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);
     }