From ca3326e09a30181127a3e49985538ef424b5e612 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Wed, 25 Sep 2024 18:22:37 +0200 Subject: core: rename property accessors of participant --- ui/tests/windows/participant_editor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ui/tests') diff --git a/ui/tests/windows/participant_editor.cpp b/ui/tests/windows/participant_editor.cpp index b721018..46c9b58 100644 --- a/ui/tests/windows/participant_editor.cpp +++ b/ui/tests/windows/participant_editor.cpp @@ -97,13 +97,13 @@ namespace turns::ui::windows::tests SECTION("has its name field set according to its participant") { auto widget = GTK_EDITABLE(Glib::unwrap(builder->get_widget("name"))); - REQUIRE(gtk_editable_get_text(widget) == participant->name().get_value()); + REQUIRE(gtk_editable_get_text(widget) == participant->property_name().get_value()); } SECTION("has its priority field set according to its participant") { auto widget = ADW_SPIN_ROW(Glib::unwrap(builder->get_widget("priority"))); - REQUIRE(adw_spin_row_get_value(widget) == participant->priority()); + REQUIRE(adw_spin_row_get_value(widget) == participant->property_priority()); } SECTION("allows binding to the finished signal") -- cgit v1.2.3