Skip to content

Commit

Permalink
[test] fix typo in lua_execute_test
Browse files Browse the repository at this point in the history
  • Loading branch information
harrand committed Oct 29, 2024
1 parent b5a89b5 commit 4913885
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/tz/lua_execute_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ void do_work()


tz_must(tz::lua_execute("myvar = \"hello there\""));
std::string myvar = tz_must(tz::lua_get_string("myvr"));
std::string myvar = tz_must(tz::lua_get_string("myvar"));
tz_assert(myvar == "hello there", "string get failed");
}

Expand Down

0 comments on commit 4913885

Please sign in to comment.