1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-08-01 02:29:30 +00:00

Fixed test for missing function definition. #196

This commit is contained in:
jespergravgaard 2020-04-09 08:13:44 +02:00
parent ebdce3b2a7
commit 8bdc927694

View File

@ -39,7 +39,7 @@ public class TestPrograms {
@Test
public void testCStyleDeclMissing() throws IOException, URISyntaxException {
assertError("cstyle-decl-missing", "Error! Function is never declared: sum");
assertError("cstyle-decl-missing", "Error! Function is never declared: sum", false);
}
@Test