From: Peter Rabbitson <ribasushi@cpan.org>
Date: Mon, 18 May 2009 20:12:35 +0000 (+0000)
Subject: Failing tests go to branches
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ea1096447b977206b91bf9b78d593810b65c3fd5;p=dbsrgits%2FDBIx-Class-Historic.git

Failing tests go to branches
---

diff --git a/t/42toplimit.t b/t/42toplimit.t
index 6f05660..aefbc0c 100644
--- a/t/42toplimit.t
+++ b/t/42toplimit.t
@@ -43,10 +43,3 @@ sub test_order {
       ],
       expected_sql_order => ['foo ASC, bar DESC, baz ASC, frew ASC', 'foo DESC, bar ASC, baz DESC, frew DESC']
   });
-
-  is_same_sql(
-     $sa->select( 'foo', [qw{ bar baz}], undef, {
-           group_by => 'bar',
-           order_by => 'bar',
-    }, 1, 3),
-    "SELECT * FROM ( SELECT TOP 1 * FROM ( SELECT TOP 4 bar,baz FROM foo ORDER BY bar ASC GROUP BY bar ) AS foo ORDER BY bar DESC ) AS bar ORDER BY bar ASC");