diff options
Diffstat (limited to 'ui/tests')
| -rw-r--r-- | ui/tests/participant_row.cpp | 4 |
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))); } } |
