Skip to content

Commit 08d17a7

Browse files
committed
Corrected test disablement
1 parent b7b4ba6 commit 08d17a7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

com.unity.netcode.gameobjects/Tests/Editor/Timing/NetworkTimeTests.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,12 @@ public void TestToFixedTime(double time, double expectedFixedTime, uint tickRate
5454
}
5555

5656
[Test]
57+
[UnityPlatform(exclude = new[] { RuntimePlatform.OSXPlayer, RuntimePlatform.OSXEditor })] // Tracked in MTT-11608
5758
[TestCase(34d, 0)]
5859
[TestCase(17.32d, 0.2d / 60d)]
5960
[TestCase(-42.44d, 1d / 60d - 0.4d / 60d)]
6061
[TestCase(-6d, 0)]
61-
// [TestCase(int.MaxValue / 61d, 0.00082, 10d)] // Int.Max / 61 / (1/60) to get divisor then: Int.Max - divisor * 1 / 60 ------(Tracked in MTT-11608)
62+
[TestCase(int.MaxValue / 61d, 0.00082, 10d)] // Int.Max / 61 / (1/60) to get divisor then: Int.Max - divisor * 1 / 60
6263
public void NetworkTimeCreate(double time, double tickOffset, double epsilon = 0.0001d)
6364
{
6465
var networkTime = new NetworkTime(60, time);

0 commit comments

Comments
 (0)