Skip to content

Commit

Permalink
test(Unity): fix manager ping session
Browse files Browse the repository at this point in the history
  • Loading branch information
Hertzole committed Jun 1, 2024
1 parent eae0c7c commit ab30df1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions GameJolt.NET.Tests/Unity/GameJoltManagerTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,11 @@ public async Task AutoPingSessions_SessionPinged()
return FromResult(serializer.Serialize(new Response(true, null)));
}
if (arg.Contains("sessions/check"))
{
return FromResult(serializer.SerializeResponse(new Response(true, null)));
}
return FromResult("");
});

Expand Down

0 comments on commit ab30df1

Please sign in to comment.