summaryrefslogtreecommitdiff
path: root/ui/tests
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2024-09-25 18:22:37 +0200
committerFelix Morgner <felix.morgner@gmail.com>2024-09-25 18:22:37 +0200
commitca3326e09a30181127a3e49985538ef424b5e612 (patch)
tree345eba9cb6ad06fbe969f6852907cfc11b86cd39 /ui/tests
parent4c5d17bc8e6fceeb6fd9cc45c10f07b7bc639f49 (diff)
downloadturns-ca3326e09a30181127a3e49985538ef424b5e612.tar.xz
turns-ca3326e09a30181127a3e49985538ef424b5e612.zip
core: rename property accessors of participant
Diffstat (limited to 'ui/tests')
-rw-r--r--ui/tests/windows/participant_editor.cpp4
1 files changed, 2 insertions, 2 deletions
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<Gtk::ListBoxRow>("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<Gtk::ListBoxRow>("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")