Skip to content

Commit 1be23b8

Browse files
committed
Using using.
1 parent f24b197 commit 1be23b8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

NETProvider/src/FirebirdSql.Data.UnitTests/FbCommandTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
using System.Collections;
2424
using System.Data;
2525
using System.Text;
26-
26+
using System.Threading;
2727
using FirebirdSql.Data.FirebirdClient;
2828
using NUnit.Framework;
2929

@@ -733,9 +733,9 @@ public void CommandCancellationTest()
733733
cancelled = "HY008" == ex.SQLSTATE;
734734
}
735735
}, null);
736-
System.Threading.Thread.Sleep(2000);
736+
Thread.Sleep(2000);
737737
cmd.Cancel();
738-
System.Threading.Thread.Sleep(2000);
738+
Thread.Sleep(2000);
739739
Assert.IsTrue(cancelled);
740740
}
741741
}

0 commit comments

Comments
 (0)