File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -164,15 +164,15 @@ class RestCatalogIntegrationTest : public ::testing::Test {
164164 auto partition_spec_result =
165165 PartitionSpec::Make (PartitionSpec::kInitialSpecId , {}, 0 );
166166 EXPECT_THAT (partition_spec_result, IsOk ());
167- return std::shared_ptr<PartitionSpec>( std:: move (*partition_spec_result)) ;
167+ return { std::move (*partition_spec_result)} ;
168168 }
169169
170170 // Helper function to create a default unsorted sort order
171171 std::shared_ptr<SortOrder> CreateDefaultSortOrder () {
172172 auto sort_order_result =
173173 SortOrder::Make (SortOrder::kUnsortedOrderId , std::vector<SortField>{});
174174 EXPECT_THAT (sort_order_result, IsOk ());
175- return std::shared_ptr<SortOrder>( std:: move (*sort_order_result)) ;
175+ return { std::move (*sort_order_result)} ;
176176 }
177177
178178 static inline std::unique_ptr<DockerCompose> docker_compose_;
You can’t perform that action at this time.
0 commit comments