diff --git a/test/models/shipment.hpp b/test/models/shipment.hpp index 8e8b79f..0277943 100644 --- a/test/models/shipment.hpp +++ b/test/models/shipment.hpp @@ -17,7 +17,7 @@ struct shipment { shipment(const long id, std::string tracking_number) : id(id), tracking_number(std::move(tracking_number)) {} - long id{}; + int64_t id{}; std::string tracking_number; object::collection > packages{}; @@ -35,7 +35,7 @@ struct package { package(const long id, double weight, object::object_ptr del) : id(id), weight(weight), delivery(std::move(del)){} - long id{}; + int64_t id{}; double weight{}; object::object_ptr delivery;