From 66c40e57a2262ebdc03dd8cdc6affa16dbce23f4 Mon Sep 17 00:00:00 2001 From: Ben Stein <115497763+sei-bstein@users.noreply.github.com> Date: Mon, 11 Nov 2024 10:53:22 -0500 Subject: [PATCH] v3.24.1 (#526) * Remove unnecessary exception nonsense * Add fields to challenges report * Partially address #254 - allow alt names on certificates * MInor bug fixes * Fix name settings bug * Cleanup * Fix team session start bug * Unit test for ToLookup and snippet update * Tests * Add initial tests * Finish test --- .../Tests/Features/Teams/StartTeamSessionTests.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Gameboard.Api.Tests.Integration/Tests/Features/Teams/StartTeamSessionTests.cs b/src/Gameboard.Api.Tests.Integration/Tests/Features/Teams/StartTeamSessionTests.cs index b9b7b16f..130b7f39 100644 --- a/src/Gameboard.Api.Tests.Integration/Tests/Features/Teams/StartTeamSessionTests.cs +++ b/src/Gameboard.Api.Tests.Integration/Tests/Features/Teams/StartTeamSessionTests.cs @@ -89,6 +89,7 @@ await _testContext.WithDataState(state => .PutAsync($"api/player/{playerId}/start", null) .DeserializeResponseAs(); - // + // then we should get a player back with a nonempty session start + result.SessionBegin.ShouldBeGreaterThan(DateTimeOffset.MinValue); } }