We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9390f3b commit 63a1714Copy full SHA for 63a1714
test/Microsoft.Extensions.ML.Tests/FileLoaderTests.cs
@@ -11,6 +11,7 @@
11
using Microsoft.Extensions.Primitives;
12
using Microsoft.ML.Data;
13
using Microsoft.ML.TestFramework;
14
+using Microsoft.ML.TestFrameworkCommon;
15
using Xunit;
16
using Xunit.Abstractions;
17
@@ -72,7 +73,7 @@ public void can_reload_model()
72
73
74
File.WriteAllText("testdata.txt", "test");
75
- Assert.True(changed.WaitOne(2000), "FileLoader ChangeToken didn't fire before the allotted time.");
76
+ Assert.True(changed.WaitOne(AsyncTestHelper.UnexpectedTimeout), "FileLoader ChangeToken didn't fire before the allotted time.");
77
}
78
79
0 commit comments