summaryrefslogtreecommitdiff
path: root/ui/tests
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2025-04-30 11:01:48 +0200
committerFelix Morgner <felix.morgner@gmail.com>2025-04-30 11:01:48 +0200
commit3e68879c7901384913c03bd587b248a3fd79d9ff (patch)
tree3aa3395d6c84b064c60ad19f5d274a5d2bd575d4 /ui/tests
parentf729c62bf23061e33a362ef1322d8fed8ae632b1 (diff)
downloadturns-3e68879c7901384913c03bd587b248a3fd79d9ff.tar.xz
turns-3e68879c7901384913c03bd587b248a3fd79d9ff.zip
core: rename participant to Participant
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 920858b..6e5319f 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<ParticipantRow>(Glib::RefPtr<core::participant>{}));
+ REQUIRE(std::make_shared<ParticipantRow>(Glib::RefPtr<core::Participant>{}));
}
SECTION("can be created with a participant")
{
- REQUIRE(std::make_shared<ParticipantRow>(core::participant::create("Tazmyla Fireforge", 13, core::disposition::secret)));
+ REQUIRE(std::make_shared<ParticipantRow>(core::Participant::create("Tazmyla Fireforge", 13, core::disposition::secret)));
}
}