From 15d3db176737390b141dcd09ad08aad31e14807d Mon Sep 17 00:00:00 2001 From: Dan Scott Date: Mon, 6 Jan 2014 11:07:17 -0500 Subject: [PATCH] Make sample phone numbers "(xxx) xxx-xxxx" format The extra hyphen between the closing parenthesis and the 4th digit was just plain weird. Thanks to Ben Shum for mentioning this in IRC! Signed-off-by: Dan Scott Signed-off-by: Ben Shum --- Open-ILS/tests/datasets/sql/libraries.sql | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Open-ILS/tests/datasets/sql/libraries.sql b/Open-ILS/tests/datasets/sql/libraries.sql index 5124769779..fb6cdd10e2 100644 --- a/Open-ILS/tests/datasets/sql/libraries.sql +++ b/Open-ILS/tests/datasets/sql/libraries.sql @@ -62,7 +62,7 @@ INSERT INTO actor.org_unit_setting(org_unit, name, value) VALUES (7, 'lib.info_url', '"http://br4.example.com/info"'); -- BR4 -UPDATE actor.org_unit SET email = 'br1@example.com', phone = '(555)-555-0271' WHERE shortname = 'BR1'; -UPDATE actor.org_unit SET email = 'br2@example.com', phone = '(555)-555-0272' WHERE shortname = 'BR2'; -UPDATE actor.org_unit SET email = 'br3@example.com', phone = '(555)-555-0273' WHERE shortname = 'BR3'; -UPDATE actor.org_unit SET email = 'br4@example.com', phone = '(555)-555-0274' WHERE shortname = 'BR4'; +UPDATE actor.org_unit SET email = 'br1@example.com', phone = '(555) 555-0271' WHERE shortname = 'BR1'; +UPDATE actor.org_unit SET email = 'br2@example.com', phone = '(555) 555-0272' WHERE shortname = 'BR2'; +UPDATE actor.org_unit SET email = 'br3@example.com', phone = '(555) 555-0273' WHERE shortname = 'BR3'; +UPDATE actor.org_unit SET email = 'br4@example.com', phone = '(555) 555-0274' WHERE shortname = 'BR4'; -- 2.43.2