From 37b1e156d4ff7c872ef60e947d8051532d1020ca Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Wed, 7 Aug 2024 11:14:31 -0500 Subject: [PATCH] fix --- repertory/repertory_test/src/remote_winfsp_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/repertory/repertory_test/src/remote_winfsp_test.cpp b/repertory/repertory_test/src/remote_winfsp_test.cpp index 91276cb4..01860433 100644 --- a/repertory/repertory_test/src/remote_winfsp_test.cpp +++ b/repertory/repertory_test/src/remote_winfsp_test.cpp @@ -53,8 +53,8 @@ static void can_delete_test(remote_client &client) { EXPECT_TRUE(nf); if (nf) { EXPECT_EQ(STATUS_INVALID_HANDLE, - client.winfsp_can_delete( - reinterpret_cast(nf.get_handle()), api_path.c_str()); + client.winfsp_can_delete(reinterpret_cast(nf.get_handle()), + api_path.c_str())); nf.close(); EXPECT_TRUE(utils::file::retry_delete_file(test_file));