Skip to content

Commit

Permalink
unique ptr in remote test
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisspyB committed Oct 30, 2024
1 parent 37a19af commit 771c5b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/remote/test_remote.cc
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ CASE( "Remote protocol: extract" ) {
}

GribJump gribjump;
std::vector<std::vector<ExtractionResult*>> output = gribjump.extract(exRequests);
std::vector<std::vector<std::unique_ptr<ExtractionResult>>> output = gribjump.extract(exRequests);

EXPECT_EQUAL(output.size(), 2);
for (size_t i = 0; i < output.size(); i++) {
Expand Down

0 comments on commit 771c5b5

Please sign in to comment.