Skip to content

Commit

Permalink
revert uncomment
Browse files Browse the repository at this point in the history
  • Loading branch information
Vighnesh-V committed Dec 4, 2023
1 parent 765ac75 commit 7288e0a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/RequireByString.test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@ class ReplWithPathFixture

luauDirRel += "/..";
std::optional<std::string> parentPath = getParentPath(luauDirAbs);
if (parentPath)
{
printf("%s\n", (*parentPath).c_str());
}
REQUIRE_MESSAGE(parentPath, "Error getting Luau path");
luauDirAbs = *parentPath;
}
Expand Down Expand Up @@ -209,7 +213,6 @@ TEST_CASE("PathNormalization")
}
}

#if 0

TEST_CASE_FIXTURE(ReplWithPathFixture, "RequireSimpleRelativePath")
{
Expand Down Expand Up @@ -390,6 +393,4 @@ TEST_CASE_FIXTURE(ReplWithPathFixture, "RequirePathWithParentAlias")
assertOutputContainsAll({"true", "result from other_dependency"});
}

#endif

TEST_SUITE_END();

0 comments on commit 7288e0a

Please sign in to comment.