File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
tmc-langs-make/src/test/java/fi/helsinki/cs/tmc/langs/make Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ public void testItMovesFilesInSrc() throws IOException {
33
33
34
34
TestUtils .collectPaths (path , toBeMoved , makeStudentFilePolicy );
35
35
System .out .println (toBeMoved );
36
- assertEquals (5 , toBeMoved .size ());
36
+ assertEquals (4 , toBeMoved .size ());
37
37
38
38
assertTrue (toBeMoved .contains ("src" + File .separatorChar + "Makefile" ));
39
39
assertTrue (toBeMoved .contains ("src" + File .separatorChar + "main.c" ));
@@ -47,7 +47,7 @@ public void testItDoesNotMoveFilesInTest() throws IOException {
47
47
48
48
TestUtils .collectPaths (path , toBeMoved , makeStudentFilePolicy );
49
49
50
- assertEquals (5 , toBeMoved .size ());
50
+ assertEquals (4 , toBeMoved .size ());
51
51
assertFalse (toBeMoved .contains ("test" + File .separatorChar + "test_source.c" ));
52
52
assertFalse (toBeMoved .contains ("test" + File .separatorChar + "tmc-check.h" ));
53
53
assertFalse (toBeMoved .contains ("test" + File .separatorChar + "tmc-check.c" ));
You can’t perform that action at this time.
0 commit comments