Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
boole committed Aug 14, 2022
1 parent 3dbef56 commit e55d714
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/test/java/com/boole/jgpm/TestRunner.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.boole.jgpm;

import com.boole.jgmp.math.vectors.JGMPVector2;
import com.boole.jgpm.math.helpers.JGMPCollisionHTest;
import com.boole.jgpm.math.helpers.JGMPFloatHTest;
import com.boole.jgpm.math.shapes.JGMPCircleTest;
Expand Down Expand Up @@ -41,7 +40,7 @@ static void runFloatHTests() {
System.out.println("Float Helper Testing =>");
for(Failure failure : result.getFailures())
System.out.println("---> " + failure.toString());
System.out.println(result.wasSuccessful() ? "Successful!" : "Failed!");
System.out.println(result.wasSuccessful() ? "Successful!\n" : "Failed!\n");
}

static void runCircleTests() {
Expand Down

0 comments on commit e55d714

Please sign in to comment.