Commit 2c0e0d52 authored by Kevin Pullin's avatar Kevin Pullin

Fixed typo

'exceptionThrow' -> 'exceptionThrown'
parent 5b4c4368
...@@ -1123,16 +1123,16 @@ public void TestDefaultDbStringDbType() ...@@ -1123,16 +1123,16 @@ public void TestDefaultDbStringDbType()
a.IsAnsi.IsTrue(); a.IsAnsi.IsTrue();
b.IsAnsi.IsFalse(); b.IsAnsi.IsFalse();
var exceptionThrow = false; var exceptionThrown = false;
try try
{ {
DbString.DefaultStringDbType = DbType.Int32; DbString.DefaultStringDbType = DbType.Int32;
} }
catch catch
{ {
exceptionThrow = true; exceptionThrown = true;
} }
exceptionThrow.IsTrue(); exceptionThrown.IsTrue();
} }
finally finally
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment