fix a silly problem with RequireByString.test.cpp depending on the repository being checked out as luau

This commit is contained in:
Aaron Weiss 2024-12-17 11:37:30 -08:00
parent 9dc6f3033b
commit a885998948

View file

@ -116,7 +116,7 @@ public:
for (int i = 0; i < 20; ++i)
{
bool engineTestDir = isDirectory(luauDirAbs + "/Client/Luau/tests");
bool luauTestDir = isDirectory(luauDirAbs + "/luau/tests/require");
bool luauTestDir = isDirectory(luauDirAbs + "/tests/require");
if (engineTestDir || luauTestDir)
{
@ -125,12 +125,6 @@ public:
luauDirRel += "/Client/Luau";
luauDirAbs += "/Client/Luau";
}
else
{
luauDirRel += "/luau";
luauDirAbs += "/luau";
}
if (type == PathType::Relative)
return luauDirRel;