From d7d9199f8e97e5267b21e08dbfec7902291cd06f Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Sun, 10 Nov 2024 16:33:44 -0600 Subject: [PATCH] fuse unit tests and fixes --- .../repertory_test/src/fuse_drive_create_and_open_test.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/repertory/repertory_test/src/fuse_drive_create_and_open_test.cpp b/repertory/repertory_test/src/fuse_drive_create_and_open_test.cpp index 3967c683..a90a442c 100644 --- a/repertory/repertory_test/src/fuse_drive_create_and_open_test.cpp +++ b/repertory/repertory_test/src/fuse_drive_create_and_open_test.cpp @@ -61,7 +61,8 @@ TYPED_TEST(fuse_test, create_can_create_file_with_specific_perms) { } TYPED_TEST(fuse_test, create_can_create_file) { - auto file_path = this->create_file_path("create_test"); + std::string file_name{"create_test"}; + auto file_path = this->create_file_path(file_name); auto handle = open(file_path.c_str(), O_CREAT, ACCESSPERMS); EXPECT_LE(1, handle);