From 2a8481a5e2f487c649fc9b2e1c03b42fe42fee07 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Mon, 16 Sep 2013 19:22:22 +0000 Subject: [PATCH] Bug 10667: (follow-up) fix reference to UT library in test case This patch prevents a spurious test case failure if the test database happens to already have a library whose code is 'UT'. Signed-off-by: Galen Charlton --- t/db_dependent/ILSDI_Services.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/db_dependent/ILSDI_Services.t b/t/db_dependent/ILSDI_Services.t index 9b68604ce9..43fbeea50b 100644 --- a/t/db_dependent/ILSDI_Services.t +++ b/t/db_dependent/ILSDI_Services.t @@ -38,7 +38,7 @@ unless ( GetBorrowercategory('UT') ) { } # Create branch -unless ( GetBranchDetail('DEMO') ) { +unless ( GetBranchDetail('UT') ) { $dbh->do("INSERT INTO branches (branchcode,branchname) VALUES ('UT','Unit test library');"); } -- 2.39.5