test and patch for failing mini-prefetch via columns (arcanez++)
[dbsrgits/DBIx-Class.git] / t / 72pg.t
index f2df2d5..2178ce0 100644 (file)
--- a/t/72pg.t
+++ b/t/72pg.t
@@ -162,7 +162,7 @@ is_deeply($type_info, $test_type_info,
   my $count;
   lives_ok {
     $count = $schema->resultset('ArrayTest')->search({
-      arrayfield => \[ '= ?' => [arrayfield => [3, 4]] ],   #TODO anything less ugly than this?
+      arrayfield => \[ '= ?' => [arrayfield => [3, 4]] ],   #Todo anything less ugly than this?
     })->count;
   } 'comparing arrayref to pg array data does not blow up';
   is($count, 1, 'comparing arrayref to pg array data gives correct result');