From 220d4f95c0ecbfc176885a1d4043899a6a6641a3 Mon Sep 17 00:00:00 2001 From: "Daniel St. Jules" Date: Wed, 12 Feb 2014 19:07:38 -0500 Subject: [PATCH] Fix indentation in test - it was bugging me --- tests/StringyTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/StringyTest.php b/tests/StringyTest.php index 1f2e809..5c4d8a8 100644 --- a/tests/StringyTest.php +++ b/tests/StringyTest.php @@ -790,7 +790,7 @@ class StringyTestCase extends CommonTest * @dataProvider countSubstrProvider() */ public function testCountSubstr($expected, $str, $substring, - $caseSensitive = true, $encoding = null) + $caseSensitive = true, $encoding = null) { $stringy = S::create($str, $encoding); $result = $stringy->countSubstr($substring, $caseSensitive);