@@ -17,8 +17,10 @@ public class CTestCaseTest {
17
17
private static final ImmutableList <String > points = ImmutableList .of ("1.1" );
18
18
19
19
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 );
22
24
private static final String valgrindTrace =
23
25
"\n "
24
26
+ "==20737== \n "
@@ -53,12 +55,10 @@ public class CTestCaseTest {
53
55
+ "==20737== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0"
54
56
+ " from 0)" ;
55
57
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 );
62
62
63
63
static {
64
64
valgrindFail .setValgrindTrace (valgrindTrace );
0 commit comments