Skip to content

Commit dbafb6a

Browse files
Erik Bylundkirre-bylund
authored andcommitted
fix: Avoid negative scores in SubmitScoreTest.cs
1 parent 2d45198 commit dbafb6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/LootLockerTests/PlayMode/SubmitScoreTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ public IEnumerator SubmitScore_AttemptSubmitOnOverwriteScore_DoesNotUpdateScoreW
205205
//Given
206206
LootLockerSubmitScoreResponse actualResponse = null;
207207
bool scoreSubmittedCompleted = false;
208-
var actualScore = Random.Range(0, 100);
208+
var actualScore = Random.Range(2, 100);
209209

210210
LootLockerSDKManager.SubmitScore(null, actualScore, GlobalPlayerLeaderboardKey, (response) =>
211211
{

0 commit comments

Comments
 (0)