X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=tests%2Fphpunit%2Fapi%2Fv3%2FCustomGroupTest.php;h=ae0d5d7effbfbc37461cd7d0601a3e30a7f55841;hb=4cbe18b880934fc136c432057b8612cefd988522;hp=2f9138bab7adf7f74079ed7a8aec6e281abeaacd;hpb=232624b1bfe3beee7476775b278b9509e1607487;p=civicrm-core.git diff --git a/tests/phpunit/api/v3/CustomGroupTest.php b/tests/phpunit/api/v3/CustomGroupTest.php index 2f9138bab7..ae0d5d7eff 100644 --- a/tests/phpunit/api/v3/CustomGroupTest.php +++ b/tests/phpunit/api/v3/CustomGroupTest.php @@ -1,9 +1,9 @@ 'Custom Group Create', @@ -174,13 +177,14 @@ class api_v3_CustomGroupTest extends CiviUnitTestCase { */ function testCustomGroupGetFields() { $params = array( - 'options' => array('get_options' => 'style'), + 'options' => array('get_options' => 'style'), ); $result = $this->callAPISuccess('custom_group', 'getfields', $params); $expected = array( 'Tab' => 'Tab', 'Inline' => 'Inline', + 'Tab with table' => 'Tab with table', ); $this->assertEquals($expected, $result['values']['style']['options']); }