fix: few uneeded changes

This commit is contained in:
ramdoys 2024-12-08 21:51:52 -05:00
parent 89ae76416f
commit fd7ab86368
2 changed files with 2 additions and 2 deletions

View file

@ -349,7 +349,7 @@ TEST_CASE_FIXTURE(ReplWithPathFixture, "CheckCacheAfterRequireLua")
std::string absolutePath = getLuauDirectory(PathType::Absolute) + "/tests/require/without_config/lua_dependency";
luaL_findtable(L, LUA_REGISTRYINDEX, "_MODULES", 1);
lua_getfield(L, -1, (absolutePath + ".luau").c_str());
lua_getfield(L, -1, (absolutePath + ".lua").c_str());
REQUIRE_MESSAGE(lua_isnil(L, -1), "Cache already contained module result");
runProtectedRequire(relativePath);

View file

@ -1 +1 @@
return { "result from init.luau" }
return { "result from init.lua" }