From: Rafael Kitover Date: Fri, 21 Aug 2009 04:53:53 +0000 (+0000) Subject: slightly better mars test, still passes X-Git-Tag: v0.08114~4^2~4 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7c5b1b9f543c0a88a8abd583e8e37f31fce26e1c;p=dbsrgits%2FDBIx-Class.git slightly better mars test, still passes --- diff --git a/t/747mssql_ado.t b/t/747mssql_ado.t index bcd218e..227c9b5 100644 --- a/t/747mssql_ado.t +++ b/t/747mssql_ado.t @@ -45,8 +45,8 @@ for (1..6) { } # test multiple active cursors -my $rs1 = $schema->resultset('Artist'); -my $rs2 = $schema->resultset('Artist'); +my $rs1 = $schema->resultset('Artist')->search({}, { order_by => 'artistid' }); +my $rs2 = $schema->resultset('Artist')->search({}, { order_by => 'name' }); while ($rs1->next) { ok eval { $rs2->next }, 'multiple active cursors';