Author: REHSACK
Date: Tue Nov 20 02:57:24 2012
New Revision: 15482
Modified:
dbi/branches/sqlengine/t/49dbd_file.t
Log:
sort expected data for table_info test, too
Modified: dbi/branches/sqlengine/t/49dbd_file.t
==============================================================================
--- dbi/branches/sqlengine/t/49dbd_file.t (original)
+++ dbi/branches/sqlengine/t/49dbd_file.t Tue Nov 20 02:57:24 2012
@@ -127,7 +127,7 @@
ok ($sth = $dbh->table_info (), "table_info");
@tables = sort { $a->[2] cmp $b->[2] } @{$sth->fetchall_arrayref};
-is_deeply (\@tables, [ map { [ undef, undef, $_, 'TABLE', 'FILE' ] }
"000_just_testing", $tbl ], "table_info gives test table");
+is_deeply (\@tables, [ map { [ undef, undef, $_, 'TABLE', 'FILE' ] } sort
"000_just_testing", $tbl ], "table_info gives test table");
SKIP: {
$using_dbd_gofer and skip "modifying meta data doesn't work with
Gofer-AutoProxy", 4;