testqbsp: fix absolute path in q1_wad_external

This commit is contained in:
Eric Wasylishen 2022-06-27 22:40:38 -06:00
parent 59bff81e9d
commit 7439fc30db
1 changed files with 1 additions and 1 deletions

View File

@ -1608,7 +1608,7 @@ TEST_CASE("q1_wad_internal", "[testmaps_q1]") {
* Test for WAD internal textures * Test for WAD internal textures
**/ **/
TEST_CASE("q1_wad_external", "[testmaps_q1]") { TEST_CASE("q1_wad_external", "[testmaps_q1]") {
const auto [bsp, bspx, prt] = LoadTestmapQ1("qbsp_simple.map", { "-xwadpath", "A:\\ericw-tools\\testmaps" }); const auto [bsp, bspx, prt] = LoadTestmapQ1("qbsp_simple.map", { "-xwadpath", std::string(testmaps_dir) });
CHECK(GAME_QUAKE == bsp.loadversion->game->id); CHECK(GAME_QUAKE == bsp.loadversion->game->id);