We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f24b197 commit 1be23b8Copy full SHA for 1be23b8
NETProvider/src/FirebirdSql.Data.UnitTests/FbCommandTests.cs
@@ -23,7 +23,7 @@
23
using System.Collections;
24
using System.Data;
25
using System.Text;
26
-
+using System.Threading;
27
using FirebirdSql.Data.FirebirdClient;
28
using NUnit.Framework;
29
@@ -733,9 +733,9 @@ public void CommandCancellationTest()
733
cancelled = "HY008" == ex.SQLSTATE;
734
}
735
}, null);
736
- System.Threading.Thread.Sleep(2000);
+ Thread.Sleep(2000);
737
cmd.Cancel();
738
739
Assert.IsTrue(cancelled);
740
741
0 commit comments