Skip to content

Commit

Permalink
[#4] [RND-342] remove an invalid testcases from odbc unittest (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
hornetmj authored and kisoo-han committed Jun 26, 2017
1 parent 1e2608d commit 78a9a7e
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions UnitTest/UnitTest/TestTransaction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -189,10 +189,6 @@ public static void Test_Transaction_Level()
Assert.IsTrue(tran.IsolationLevel == IsolationLevel.Serializable);
tran.Commit();

tran = conn.BeginTransaction(IsolationLevel.ReadUncommitted);
Assert.IsTrue(tran.IsolationLevel == IsolationLevel.ReadUncommitted);
tran.Commit();

tran = conn.BeginTransaction(IsolationLevel.RepeatableRead);
Assert.IsTrue(tran.IsolationLevel == IsolationLevel.RepeatableRead);
tran.Commit();
Expand Down

0 comments on commit 78a9a7e

Please sign in to comment.