From 4ec6a2ae12b6adb843c0777649ff45a741ca6cbc Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Tue, 23 Jul 2024 15:08:19 +0200 Subject: domain: redesign turn_order --- app/tests/windows/participant_editor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/tests/windows') diff --git a/app/tests/windows/participant_editor.cpp b/app/tests/windows/participant_editor.cpp index 5808740..9f73861 100644 --- a/app/tests/windows/participant_editor.cpp +++ b/app/tests/windows/participant_editor.cpp @@ -95,13 +95,13 @@ namespace turns::app::windows::tests SECTION("has its name field set according to its participant") { auto widget = GTK_EDITABLE(builder->get_widget("name")->gobj()); - REQUIRE(gtk_editable_get_text(widget) == participant->get_name()); + REQUIRE(gtk_editable_get_text(widget) == participant->name().get_value()); } SECTION("has its priority field set according to its participant") { auto widget = ADW_SPIN_ROW(builder->get_widget("priority")->gobj()); - REQUIRE(adw_spin_row_get_value(widget) == participant->get_priority()); + REQUIRE(adw_spin_row_get_value(widget) == participant->priority()); } SECTION("allows binding to the finished signal") -- cgit v1.2.3