summaryrefslogtreecommitdiff
path: root/ui/tests
diff options
context:
space:
mode:
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")