diff --git a/Tests/Tests.cs b/Tests/Tests.cs index 674e18a48a487cbf67d304d799e21a1ba8b6d325..09e2ad03fed5743f1a8b5ab2ac3a8ca25ca586b3 100644 --- a/Tests/Tests.cs +++ b/Tests/Tests.cs @@ -3090,7 +3090,7 @@ public void TestPostresqlArrayParameters() conn.Open(); IDbTransaction transaction = conn.BeginTransaction(); conn.Execute("create table tcat ( id serial not null, breed character varying(20) not null, name character varying (20) not null);"); - conn.Execute("insert tcat(breed, name) values(:breed, :name) ", Cats); + conn.Execute("insert into tcat(breed, name) values(:breed, :name) ", Cats); var r = conn.Query("select * from tcat where id=any(:catids)", new { catids = new[] { 1, 3, 5 } }); r.Count().IsEqualTo(3);