From 50dd76aef356e38cd774e1fb4b29b59453233418 Mon Sep 17 00:00:00 2001 From: Nathaniel Guse Date: Sun, 9 Mar 2014 17:16:45 -0500 Subject: [PATCH] [ticket/12202] Fix tests PHPBB3-12202 --- tests/functions/parse_cfg_file_test.php | 10 +++++----- 1 file 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 = Test', 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);