From 2ca38a629ee347e4daaafd70d0837d9a3b39f00b Mon Sep 17 00:00:00 2001 From: Omar abu hussein Date: Thu, 15 Feb 2018 23:11:29 +0200 Subject: [PATCH] CRM-217690: Fix tests data providers format --- tests/phpunit/CRM/Core/BAO/AddressTest.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/phpunit/CRM/Core/BAO/AddressTest.php b/tests/phpunit/CRM/Core/BAO/AddressTest.php index 05a7b3a39d..4c4e86a435 100644 --- a/tests/phpunit/CRM/Core/BAO/AddressTest.php +++ b/tests/phpunit/CRM/Core/BAO/AddressTest.php @@ -402,9 +402,9 @@ class CRM_Core_BAO_AddressTest extends CiviUnitTestCase { public function supportedAddressParsingLocales() { return array( - 'en_US', - 'en_CA', - 'fr_CA', + array('en_US'), + array('en_CA'), + array('fr_CA'), ); } @@ -427,9 +427,9 @@ class CRM_Core_BAO_AddressTest extends CiviUnitTestCase { public function sampleOFUnsupportedAddressParsingLocales() { return array( - 'en_GB', - 'af_ZA', - 'da_DK', + array('en_GB'), + array('af_ZA'), + array('da_DK'), ); } -- 2.25.1