mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 19:00:54 +01:00
fix: few uneeded changes
This commit is contained in:
parent
89ae76416f
commit
fd7ab86368
2 changed files with 2 additions and 2 deletions
|
@ -349,7 +349,7 @@ TEST_CASE_FIXTURE(ReplWithPathFixture, "CheckCacheAfterRequireLua")
|
||||||
std::string absolutePath = getLuauDirectory(PathType::Absolute) + "/tests/require/without_config/lua_dependency";
|
std::string absolutePath = getLuauDirectory(PathType::Absolute) + "/tests/require/without_config/lua_dependency";
|
||||||
|
|
||||||
luaL_findtable(L, LUA_REGISTRYINDEX, "_MODULES", 1);
|
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");
|
REQUIRE_MESSAGE(lua_isnil(L, -1), "Cache already contained module result");
|
||||||
|
|
||||||
runProtectedRequire(relativePath);
|
runProtectedRequire(relativePath);
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
return { "result from init.luau" }
|
return { "result from init.lua" }
|
||||||
|
|
Loading…
Add table
Reference in a new issue