Fix invalid data in test scene

This commit is contained in:
Bartłomiej Dach 2022-12-27 19:48:18 +01:00
parent b4a3f872ee
commit e2703bba18
No known key found for this signature in database
1 changed files with 6 additions and 6 deletions

View File

@ -28,7 +28,7 @@ public void TestAllIncreased()
new UserStatistics new UserStatistics
{ {
GlobalRank = 12_345, GlobalRank = 12_345,
Accuracy = 0.9899, Accuracy = 98.99,
MaxCombo = 2_322, MaxCombo = 2_322,
RankedScore = 23_123_543_456, RankedScore = 23_123_543_456,
TotalScore = 123_123_543_456, TotalScore = 123_123_543_456,
@ -37,7 +37,7 @@ public void TestAllIncreased()
new UserStatistics new UserStatistics
{ {
GlobalRank = 1_234, GlobalRank = 1_234,
Accuracy = 0.9907, Accuracy = 99.07,
MaxCombo = 2_352, MaxCombo = 2_352,
RankedScore = 23_124_231_435, RankedScore = 23_124_231_435,
TotalScore = 123_124_231_435, TotalScore = 123_124_231_435,
@ -53,7 +53,7 @@ public void TestAllDecreased()
new UserStatistics new UserStatistics
{ {
GlobalRank = 1_234, GlobalRank = 1_234,
Accuracy = 0.9907, Accuracy = 99.07,
MaxCombo = 2_352, MaxCombo = 2_352,
RankedScore = 23_124_231_435, RankedScore = 23_124_231_435,
TotalScore = 123_124_231_435, TotalScore = 123_124_231_435,
@ -62,7 +62,7 @@ public void TestAllDecreased()
new UserStatistics new UserStatistics
{ {
GlobalRank = 12_345, GlobalRank = 12_345,
Accuracy = 0.9899, Accuracy = 98.99,
MaxCombo = 2_322, MaxCombo = 2_322,
RankedScore = 23_123_543_456, RankedScore = 23_123_543_456,
TotalScore = 123_123_543_456, TotalScore = 123_123_543_456,
@ -76,7 +76,7 @@ public void TestNoChanges()
var statistics = new UserStatistics var statistics = new UserStatistics
{ {
GlobalRank = 12_345, GlobalRank = 12_345,
Accuracy = 0.9899, Accuracy = 98.99,
MaxCombo = 2_322, MaxCombo = 2_322,
RankedScore = 23_123_543_456, RankedScore = 23_123_543_456,
TotalScore = 123_123_543_456, TotalScore = 123_123_543_456,
@ -93,7 +93,7 @@ public void TestNotRanked()
var statistics = new UserStatistics var statistics = new UserStatistics
{ {
GlobalRank = null, GlobalRank = null,
Accuracy = 0.9899, Accuracy = 98.99,
MaxCombo = 2_322, MaxCombo = 2_322,
RankedScore = 23_123_543_456, RankedScore = 23_123_543_456,
TotalScore = 123_123_543_456, TotalScore = 123_123_543_456,