CRM-19419: Add API test for option.language in multilingual (syntax fixes).
authorMathieu Lutfy <mathieu@symbiotic.coop>
Tue, 27 Sep 2016 14:14:21 +0000 (14:14 +0000)
committerMathieu Lutfy <mathieu@symbiotic.coop>
Tue, 27 Sep 2016 14:14:21 +0000 (14:14 +0000)
tests/phpunit/api/v3/MultilingualTest.php

index d7070320d384fd4a3d45b2933d657dd3def01ec0..4dad68cb0393a29a488754f9a606d2eebb12836b 100644 (file)
@@ -75,12 +75,12 @@ class api_v3_MultilingualTest extends CiviUnitTestCase {
     // Take a semi-random OptionGroup and test manually changing its label
     // in one language, while making sure it stays the same in English.
     $group = civicrm_api3('OptionGroup', 'getsingle', array(
-      'name' => 'contact_edit_options'
+      'name' => 'contact_edit_options',
     ));
 
     $english_original = civicrm_api3('OptionValue', 'getsingle', array(
       'option_group_id' => $group['id'],
-      'name' => 'IM'
+      'name' => 'IM',
     ));
 
     civicrm_api3('OptionValue', 'create', array(
@@ -98,7 +98,8 @@ class api_v3_MultilingualTest extends CiviUnitTestCase {
 
     $default = civicrm_api3('OptionValue', 'getsingle', array(
       'option_group_id' => $group['id'],
-      'name' => 'IM', 'option.language' => 'en_US',
+      'name' => 'IM',
+      'option.language' => 'en_US',
     ));
 
     $this->assertEquals($french['label'], 'Messagerie instantanĂ©e');