From: Mike Rylander <mrylander@gmail.com>
Date: Fri, 13 Jul 2018 13:56:13 +0000 (-0400)
Subject: Fix quote nesting issue in TAP test
X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=372508d0b69a6712541e70ffaba9bc6b213be920;p=evergreen%2Fequinox.git

Fix quote nesting issue in TAP test

Signed-off-by: Mike Rylander <mrylander@gmail.com>
---

diff --git a/Open-ILS/src/sql/Pg/t/regress/lp1773452_copy_state_post_checkin.pg b/Open-ILS/src/sql/Pg/t/regress/lp1773452_copy_state_post_checkin.pg
index 6a6f2e8284..c6cbac3139 100644
--- a/Open-ILS/src/sql/Pg/t/regress/lp1773452_copy_state_post_checkin.pg
+++ b/Open-ILS/src/sql/Pg/t/regress/lp1773452_copy_state_post_checkin.pg
@@ -10,11 +10,11 @@ INSERT INTO action.circulation (id,usr,target_copy,circ_lib,circ_staff,renewal_r
   VALUES (8765309,1,8765309,1,1,0,
     1,1,1,'LONGOVERDUE','0 hours');
 
-SELECT is(asset.copy_state(8765309),'LONGOVERDUE', 'Copy state is LONGOVERDUE when stop_fines='LONGOVERDUE' and checkin_time is null');
+SELECT is(asset.copy_state(8765309),'LONGOVERDUE', 'Copy state is LONGOVERDUE when stop_fines is LONGOVERDUE and checkin_time is null.');
 
 -- Our long overdue item has returned!
 UPDATE action.circulation SET checkin_time=now() WHERE id=8765309;
 
-SELECT is(asset.copy_state(8765309),'NORMAL', 'Copy state is NORMAL when stop_fines='LONGOVERDUE' and checkin_time is not null');
+SELECT is(asset.copy_state(8765309),'NORMAL', 'Copy state is NORMAL when stop_fines is LONGOVERDUE and checkin_time is not null.');
 
 ROLLBACK;