Skip to content

Commit

Permalink
Fixed filesystem test
Browse files Browse the repository at this point in the history
  • Loading branch information
vines26 committed Mar 18, 2024
1 parent 5d5132f commit ca65e67
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/source/FileSystemTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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());
}

0 comments on commit ca65e67

Please sign in to comment.