From 8f5227db24ced05c3ad5b6f1dab8ae37342a8a45 Mon Sep 17 00:00:00 2001 From: zysim <9867871+zysim@users.noreply.github.com> Date: Thu, 24 Oct 2024 01:32:47 +0800 Subject: [PATCH] Change assertion in test --- LeaderboardBackend.Test/Leaderboards.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LeaderboardBackend.Test/Leaderboards.cs b/LeaderboardBackend.Test/Leaderboards.cs index 44b8f80d..17c7830b 100644 --- a/LeaderboardBackend.Test/Leaderboards.cs +++ b/LeaderboardBackend.Test/Leaderboards.cs @@ -520,6 +520,6 @@ public async Task RestoreLeaderboard_Conflict() LeaderboardViewModel? model = await exAssert.Which.Response.Content.ReadFromJsonAsync(TestInitCommonFields.JsonSerializerOptions); model.Should().NotBeNull(); - model!.Slug.Should().Be("conflicted-mario-world"); + model!.Id.Should().Be(reclaimed.Id); } }