removed unused code

This commit is contained in:
Sascha Kühl
2025-02-19 15:46:47 +01:00
parent 8ab8274d93
commit dfb0d7c56a
3 changed files with 3 additions and 20 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ TEST_CASE_METHOD(SessionFixture, "Session relation test", "[session][relation]")
const auto res = ses.find<flight>(2);
REQUIRE(res.is_ok());
auto rf = *res;
const auto& rf = *res;
REQUIRE(rf->id == (*f)->id);
REQUIRE(rf->pilot_name == (*f)->pilot_name);
REQUIRE(rf->plane);