Retire DBIC/SqlMakerTest.pm now that SQLA::Test provides the same function
[dbsrgits/DBIx-Class.git] / t / sqlmaker / limit_dialects / skip_first.t
index 897ed2e..a87b95e 100644 (file)
@@ -3,8 +3,7 @@ use warnings;
 
 use Test::More;
 use lib qw(t/lib);
-use DBICTest;
-use DBIC::SqlMakerTest;
+use DBICTest ':DiffSQL';
 use DBIx::Class::SQLMaker::LimitDialects;
 
 my ($LIMIT, $OFFSET) = (
@@ -88,7 +87,7 @@ is_same_sql_bind(
         [owner].[name],
         ( SELECT COUNT(*) FROM
           ( SELECT FIRST ? [owner].[id] FROM [owners] [owner]
-            WHERE [count].[id] = [owner].[id] and [count].[name] = ? 
+            WHERE [count].[id] = [owner].[id] and [count].[name] = ?
           ) [owner]
         )
       FROM [books] [me]