summaryrefslogtreecommitdiff
path: root/domain/tests/participant.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'domain/tests/participant.cpp')
-rw-r--r--domain/tests/participant.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/domain/tests/participant.cpp b/domain/tests/participant.cpp
index aa6ddcb..4f32aa0 100644
--- a/domain/tests/participant.cpp
+++ b/domain/tests/participant.cpp
@@ -33,13 +33,13 @@ namespace turns::domain::tests
SECTION("the order can be read")
{
- REQUIRE(instance.property_over_value() == constructed_order);
+ REQUIRE(instance.property_order_value() == constructed_order);
}
SECTION("the order can be changed")
{
- instance.property_over_value() = 8;
- REQUIRE(instance.property_over_value() == 8);
+ instance.property_order_value() = 8;
+ REQUIRE(instance.property_order_value() == 8);
}
SECTION("can be compared with another participant")