From 8f222b7e3ad7d3ee3dc7e53355d2706ee79e18cb Mon Sep 17 00:00:00 2001 From: xXenvy Date: Fri, 9 Aug 2024 23:38:31 +0200 Subject: [PATCH] style: make methods use camelCase --- tests/test_interpreter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {