diff options
-rw-r--r-- | tests/tst_FilePath.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tst_FilePath.cpp b/tests/tst_FilePath.cpp index d3cf1efa..55d6f1c2 100644 --- a/tests/tst_FilePath.cpp +++ b/tests/tst_FilePath.cpp @@ -68,7 +68,7 @@ main(int, char**) FilePath path("/x"); EXPECT_EQ(path, "/x"); - path = std::move(std::string("/a")); + path = std::string("/a"); EXPECT_EQ(path, "/a"); path /= FilePath("b"); |