Make sample phone numbers "(xxx) xxx-xxxx" format
authorDan Scott <dscott@laurentian.ca>
Mon, 6 Jan 2014 16:07:17 +0000 (11:07 -0500)
committerBen Shum <bshum@biblio.org>
Mon, 6 Jan 2014 16:12:30 +0000 (11:12 -0500)
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 <dscott@laurentian.ca>
Signed-off-by: Ben Shum <bshum@biblio.org>
Open-ILS/tests/datasets/sql/libraries.sql

index 5124769..fb6cdd1 100644 (file)
@@ -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';