From 18ea9c3206da9aa0ae32f18d495ec285f8b2ef79 Mon Sep 17 00:00:00 2001 From: vegorov-rbx <75688451+vegorov-rbx@users.noreply.github.com> Date: Fri, 13 Oct 2023 08:16:14 -0700 Subject: [PATCH] Consistent variable naming --- tests/Conformance.test.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/Conformance.test.cpp b/tests/Conformance.test.cpp index 46dc97cb..a023840b 100644 --- a/tests/Conformance.test.cpp +++ b/tests/Conformance.test.cpp @@ -1169,10 +1169,10 @@ TEST_CASE("AllocApi") StateRef globalState(lua_newstate(limitedRealloc, &ud), lua_close); lua_State* L = globalState.get(); - void* ud_check = nullptr; - bool allocfIsSet = lua_getallocf(L, &ud_check) == limitedRealloc; + void* udCheck = nullptr; + bool allocfIsSet = lua_getallocf(L, &udCheck) == limitedRealloc; CHECK(allocfIsSet); - CHECK(ud_check == &ud); + CHECK(udCheck == &ud); } #if !LUA_USE_LONGJMP