Bugzilla – Attachment 31588 Details for
Bug 12918
Error in test case causes test failure
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 12918 - fix failing test case
Bug-12918---fix-failing-test-case.patch (text/plain), 996 bytes, created by
Robin Sheat
on 2014-09-15 02:10:51 UTC
(
hide
)
Description:
Bug 12918 - fix failing test case
Filename:
MIME Type:
Creator:
Robin Sheat
Created:
2014-09-15 02:10:51 UTC
Size:
996 bytes
patch
obsolete
>From ca0784eb6e697ff92f2741c72ddfcbf5f46962ee Mon Sep 17 00:00:00 2001 >From: Robin Sheat <robin@catalyst.net.nz> >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. > >Test plan: >* Run the test cases. >* Note that they work. >--- > t/Templates.t | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/t/Templates.t b/t/Templates.t >index f50297b..ade6f1d 100755 >--- a/t/Templates.t >+++ b/t/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
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 12918
:
31588
|
31592
|
31602
|
31606
|
31609