Remove last remaining accesses to ->VERSION in lib
[dbsrgits/DBIx-Class.git] / t / search / select_chains_unbalanced.t
index 99dcc00..63de73c 100644 (file)
@@ -5,9 +5,7 @@ use Test::More;
 use Test::Exception;
 
 use lib qw(t/lib);
-use DBIC::SqlMakerTest;
-use DBICTest;
-
+use DBICTest ':DiffSQL';
 
 my $schema = DBICTest->init_schema();
 
@@ -42,7 +40,7 @@ my @chain = (
           me.cdid,
           DISTINCT(foo, bar),
           me.genreid,
-          (SELECT me.name, me.rank FROM artist me WHERE ( artistid 1 )),
+          (SELECT me.name, me.rank FROM artist me WHERE ( artistid 1 ))
         FROM cd me'
     => [qw/title cd_id foo bar genreid name rank/],
 
@@ -56,7 +54,7 @@ my @chain = (
           DISTINCT(foo, bar),
           me.genreid,
           (SELECT me.name, me.rank FROM artist me WHERE ( artistid 1 )),
-          COUNT( me.cdid ) AS cnt,
+          COUNT( me.cdid ) AS cnt
         FROM cd me'
     => [qw/title len cd_id foo bar genreid name rank cnt/],
   {