From 680723adcab9eea6dc4f4114bd358bc8a9b3b296 Mon Sep 17 00:00:00 2001 From: Robin Sheat Date: Mon, 15 Sep 2014 14:08:03 +1200 Subject: [PATCH] Bug 12918 - fix failing test case A bug in a test case causes test case failure. It also required a database, so I'm moving it out of the way. Test plan: * Run the test cases. * Note that they work. --- t/{ => db_dependent}/Templates.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename t/{ => db_dependent}/Templates.t (97%) diff --git a/t/Templates.t b/t/db_dependent/Templates.t similarity index 97% rename from t/Templates.t rename to t/db_dependent/Templates.t index f50297b..ade6f1d 100755 --- a/t/Templates.t +++ b/t/db_dependent/Templates.t @@ -40,7 +40,7 @@ my $columns = C4::Templates::GetColumnDefs( $query ); is( ref( $columns ) eq 'HASH', 1, 'GetColumnDefs returns a hashref' ); # get the tables names, sorted -my @keys = sort keys $columns; +my @keys = sort keys %$columns; is( scalar @keys, 5, "GetColumnDefs correctly returns the 5 tables defined in columns.def" ); my @tables = ( 'biblio', 'biblioitems', 'borrowers', 'items', 'statistics'); cmp_deeply( \@keys, \@tables, "GetColumnDefs returns the expected tables"); -- 1.9.1