rename record_printer to RecordPrinter

This commit is contained in:
2026-05-18 13:48:34 +02:00
parent caacdfa34a
commit 60f03246dc
3 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -18,7 +18,7 @@
#include "models/shipment.hpp"
#include "models/model_metas.hpp"
#include "../test/utils/record_printer.hpp"
#include "../test/utils/RecordPrinter.hpp"
using namespace matador::object;
using namespace matador::query;
@@ -633,7 +633,7 @@ TEST_CASE_METHOD(QueryFixture, "Test load entity with eager has many relation",
REQUIRE(pkgs.is_ok());
record_printer printer(std::cout);
RecordPrinter printer(std::cout);
printer.print(*pkgs);
auto shipment_records = select({SHIPMENT.tracking_number, SHIPMENT.id, PACKAGE.weight, PACKAGE.weight})