From 6bc11ec7278abd148842030f6531db00acbd2b55 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Wed, 6 Aug 2025 15:11:08 -0500 Subject: [PATCH] fix --- .../repertory_test/include/fixtures/fuse_fixture.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/repertory/repertory_test/include/fixtures/fuse_fixture.hpp b/repertory/repertory_test/include/fixtures/fuse_fixture.hpp index b7bcb5c8..83e202cc 100644 --- a/repertory/repertory_test/include/fixtures/fuse_fixture.hpp +++ b/repertory/repertory_test/include/fixtures/fuse_fixture.hpp @@ -54,31 +54,31 @@ namespace repertory { struct local_s3 final { static constexpr provider_type type{provider_type::s3}; static constexpr provider_type type2{provider_type::s3}; - static constexpr std::uint16_t remote_port{40000U}; + static constexpr std::uint16_t remote_port{41000U}; }; struct local_sia final { static constexpr provider_type type{provider_type::sia}; static constexpr provider_type type2{provider_type::sia}; - static constexpr std::uint16_t remote_port{40001U}; + static constexpr std::uint16_t remote_port{41001U}; }; struct remote_s3 final { static constexpr provider_type type{provider_type::remote}; static constexpr provider_type type2{provider_type::s3}; - static constexpr std::uint16_t remote_port{40000U}; + static constexpr std::uint16_t remote_port{41000U}; }; struct remote_sia final { static constexpr provider_type type{provider_type::remote}; static constexpr provider_type type2{provider_type::sia}; - static constexpr std::uint16_t remote_port{40001U}; + static constexpr std::uint16_t remote_port{41001U}; }; struct remote_linux_to_winfsp final { static constexpr provider_type type{provider_type::remote}; static constexpr provider_type type2{provider_type::unknown}; - static constexpr std::uint16_t remote_port{40002U}; + static constexpr std::uint16_t remote_port{41002U}; }; template class fuse_test : public ::testing::Test {