From: Alexander Hartmaier Date: Mon, 18 Jan 2010 09:22:09 +0000 (+0000) Subject: don't sort the columns in the tests either X-Git-Tag: v0.08116~50^2~7 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=3eaae0f2e5744369a5a495b819e655b16e352215;p=dbsrgits%2FDBIx-Class.git don't sort the columns in the tests either --- diff --git a/t/99dbic_sqlt_parser.t b/t/99dbic_sqlt_parser.t index 81381e9..1d86ef0 100644 --- a/t/99dbic_sqlt_parser.t +++ b/t/99dbic_sqlt_parser.t @@ -50,8 +50,8 @@ my @sources = grep for my $index (@indices) { my $source = $schema->source($source_name); - my $pk_test = join("\x00", sort $source->primary_columns); - my $idx_test = join("\x00", sort $index->fields); + my $pk_test = join("\x00", $source->primary_columns); + my $idx_test = join("\x00", $index->fields); isnt ( $pk_test, $idx_test, "no additional index for the primary columns exists in $source_name"); } }