diff --git a/tests/test_interpreter.cpp b/tests/test_interpreter.cpp index 114c528..37bcfa2 100644 --- a/tests/test_interpreter.cpp +++ b/tests/test_interpreter.cpp @@ -7,7 +7,7 @@ TEST(InterpreterTest, ShouldThrowFileOpenError) { // as most things are tested in other tests anyway. ZynkInterpreter interpreter; try { - interpreter.interpret_file("invalidfile.zk"); + interpreter.interpretFile("invalidfile.zk"); FAIL() << "Expected ZynkError thrown."; } catch (const ZynkError& error) {