Commit f5938d7b authored by Marc Gravell's avatar Marc Gravell

remove redundant test code (oops)

parent 9cc975b3
...@@ -13,8 +13,6 @@ public void TupleStructParameter_Fails_HelpfulMessage() ...@@ -13,8 +13,6 @@ public void TupleStructParameter_Fails_HelpfulMessage()
// I can see this happening... // I can see this happening...
connection.QuerySingle<int>("select @id", (id: 42, name: "Fred")); connection.QuerySingle<int>("select @id", (id: 42, name: "Fred"));
Assert.Fail(); Assert.Fail();
ValueTuple<int, int> b = (24, 13);
b.Item1.IsEqualTo(24);
} }
catch (NotSupportedException ex) catch (NotSupportedException ex)
{ {
......
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