Skip to content

Commit 3fd9974

Browse files
committed
Really fix tests
1 parent 32939df commit 3fd9974

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public void testItMovesFilesInSrc() throws IOException {
3333

3434
TestUtils.collectPaths(path, toBeMoved, makeStudentFilePolicy);
3535
System.out.println(toBeMoved);
36-
assertEquals(5, toBeMoved.size());
36+
assertEquals(4, toBeMoved.size());
3737

3838
assertTrue(toBeMoved.contains("src" + File.separatorChar + "Makefile"));
3939
assertTrue(toBeMoved.contains("src" + File.separatorChar + "main.c"));
@@ -47,7 +47,7 @@ public void testItDoesNotMoveFilesInTest() throws IOException {
4747

4848
TestUtils.collectPaths(path, toBeMoved, makeStudentFilePolicy);
4949

50-
assertEquals(5, toBeMoved.size());
50+
assertEquals(4, toBeMoved.size());
5151
assertFalse(toBeMoved.contains("test" + File.separatorChar + "test_source.c"));
5252
assertFalse(toBeMoved.contains("test" + File.separatorChar + "tmc-check.h"));
5353
assertFalse(toBeMoved.contains("test" + File.separatorChar + "tmc-check.c"));

0 commit comments

Comments
 (0)