From 0cad44cd4e97df7af03d6efdfa6a9e04a34c1c7a Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Sun, 3 Aug 2025 13:42:55 -0500 Subject: [PATCH] fix remote test --- repertory/repertory_test/include/fixtures/fuse_fixture.hpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/repertory/repertory_test/include/fixtures/fuse_fixture.hpp b/repertory/repertory_test/include/fixtures/fuse_fixture.hpp index 77ed5f52..8c42672d 100644 --- a/repertory/repertory_test/include/fixtures/fuse_fixture.hpp +++ b/repertory/repertory_test/include/fixtures/fuse_fixture.hpp @@ -189,7 +189,6 @@ protected: const auto mount_remote = [&](std::uint16_t port = 40000U) { { mount_location2 = mount_location; - auto test_directory = utils::path::combine( test::get_test_output_dir(), { @@ -219,7 +218,7 @@ protected: }); } - execute_mount(drive_args2, mount_location2); + execute_mount(drive_args2, mount_location); }; switch (provider_t::type) { @@ -261,8 +260,8 @@ protected: static void TearDownTestCase() { if (provider_t::type == provider_type::remote) { - execute_unmount(drive_args); execute_unmount(drive_args2); + execute_unmount(drive_args); } else { execute_unmount(drive_args); }