diff options
-rw-r--r-- | tests/functions/parse_cfg_file_test.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/functions/parse_cfg_file_test.php b/tests/functions/parse_cfg_file_test.php index daa0062c96..43a90ded4f 100644 --- a/tests/functions/parse_cfg_file_test.php +++ b/tests/functions/parse_cfg_file_test.php @@ -54,10 +54,10 @@ version = 3.0.12', ), ), array( - 'foo = yes + 'foo = on foo1 = true foo2 = 1 -bar = no +bar = off bar1 = false bar2 = 0 foobar = @@ -80,15 +80,15 @@ foobar2 = \'qwer\'', bar = <a href="test">Test</a>', array( 'foo' => '&amp; bar', - 'bar' => '<a href='test'>Test</a>', + 'bar' => '<a href="test">Test</a>', ), ), ); } /** - * @dataprovider parse_cfg_file_data - */ + * @dataProvider parse_cfg_file_data + */ public function test_parse_cfg_file($file_contents, $expected) { $lines = explode("\n", $file_contents); |