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

Fixed typo

'exceptionThrow' -> 'exceptionThrown'
parent 5b4c4368
......@@ -1123,16 +1123,16 @@ public void TestDefaultDbStringDbType()
a.IsAnsi.IsTrue();
b.IsAnsi.IsFalse();
var exceptionThrow = false;
var exceptionThrown = false;
try
{
DbString.DefaultStringDbType = DbType.Int32;
}
catch
{
exceptionThrow = true;
exceptionThrown = true;
}
exceptionThrow.IsTrue();
exceptionThrown.IsTrue();
}
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