Skip to content

Commit 6b67303

Browse files
committed
Fix code style
1 parent a2e8b01 commit 6b67303

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

tmc-langs-make/src/test/java/fi/helsinki/cs/tmc/langs/make/CTestCaseTest.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,10 @@ public class CTestCaseTest {
1717
private static final ImmutableList<String> points = ImmutableList.of("1.1");
1818

1919
private static final CTestCase passing = new CTestCase("test_passing", true, "", points);
20-
private static final CTestCase failing = new CTestCase("test_failing", false, "Some tests failed", new ArrayList<String>());
21-
private static final CTestCase valgrindFail = new CTestCase("test_valgrindFail", true, "", points);
20+
private static final CTestCase failing =
21+
new CTestCase("test_failing", false, "Some tests failed", new ArrayList<String>());
22+
private static final CTestCase valgrindFail =
23+
new CTestCase("test_valgrindFail", true, "", points);
2224
private static final String valgrindTrace =
2325
"\n"
2426
+ "==20737== \n"
@@ -53,12 +55,10 @@ public class CTestCaseTest {
5355
+ "==20737== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0"
5456
+ " from 0)";
5557

56-
57-
58-
59-
private static final CTestCase bothFail = new CTestCase("test_bothFail", false, "Some tests failed", points);
60-
private static final CTestCase valgrindFailAllowed = new CTestCase("test_valgrindFailAllowed", true, "", points, false);
61-
58+
private static final CTestCase bothFail =
59+
new CTestCase("test_bothFail", false, "Some tests failed", points);
60+
private static final CTestCase valgrindFailAllowed =
61+
new CTestCase("test_valgrindFailAllowed", true, "", points, false);
6262

6363
static {
6464
valgrindFail.setValgrindTrace(valgrindTrace);

0 commit comments

Comments
 (0)