From ca65e673076cdae5f1ef4421584636d5ecc99de5 Mon Sep 17 00:00:00 2001 From: Paul Vines Date: Mon, 18 Mar 2024 13:32:18 -0400 Subject: [PATCH] Fixed filesystem test --- test/source/FileSystemTest.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/source/FileSystemTest.cpp b/test/source/FileSystemTest.cpp index 92ef55e..79f6cc7 100644 --- a/test/source/FileSystemTest.cpp +++ b/test/source/FileSystemTest.cpp @@ -119,8 +119,7 @@ TEST_F(FileSystemTestFixture, makePluginFilePath) { TEST_F(FileSystemTestFixture, makePluginInstallPath) { FileSystemTestable fst(INPUT_FILE_DIR); - fs::path expectedInstallPath = fs::path(INPUT_FILE_DIR) / "plugins" / "myOS" / - "myArch" / pluginId / fileName; + fs::path expectedInstallPath = fs::path(INPUT_FILE_DIR) / pluginId / fileName; fs::path installPath = fst.makePluginInstallPath(fileName, pluginId); EXPECT_STREQ(installPath.c_str(), expectedInstallPath.c_str()); }