Skip to content

Commit

Permalink
style: make methods use camelCase
Browse files Browse the repository at this point in the history
  • Loading branch information
xXenvy committed Aug 9, 2024
1 parent a0c14b2 commit 8f222b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_interpreter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 8f222b7

Please sign in to comment.