summaryrefslogtreecommitdiff
path: root/ui/tests
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2025-04-29 17:03:31 +0200
committerFelix Morgner <felix.morgner@gmail.com>2025-04-29 17:03:31 +0200
commit0afcbdc28f038b38d8cd7fe3d80191dc3bf31303 (patch)
tree255f7e2c031b1c73a39c220e97ebd58be4379308 /ui/tests
parent9233c81e68555be6e451e371eccc2914269dd08a (diff)
downloadturns-0afcbdc28f038b38d8cd7fe3d80191dc3bf31303.tar.xz
turns-0afcbdc28f038b38d8cd7fe3d80191dc3bf31303.zip
ui: rename participant_row to ParticipantRow
Diffstat (limited to 'ui/tests')
-rw-r--r--ui/tests/participant_row.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/tests/participant_row.cpp b/ui/tests/participant_row.cpp
index 5d89c42..920858b 100644
--- a/ui/tests/participant_row.cpp
+++ b/ui/tests/participant_row.cpp
@@ -18,12 +18,12 @@ namespace turns::ui::tests
{
SECTION("can be created without a participant")
{
- REQUIRE(std::make_shared<participant_row>(Glib::RefPtr<core::participant>{}));
+ REQUIRE(std::make_shared<ParticipantRow>(Glib::RefPtr<core::participant>{}));
}
SECTION("can be created with a participant")
{
- REQUIRE(std::make_shared<participant_row>(core::participant::create("Tazmyla Fireforge", 13, core::disposition::secret)));
+ REQUIRE(std::make_shared<ParticipantRow>(core::participant::create("Tazmyla Fireforge", 13, core::disposition::secret)));
}
}