Skip to content

Commit 0249f54

Browse files
Removed unnecessary spaces
1 parent a4ff75d commit 0249f54

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

tests/BsnValidatorTest.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,8 @@ public function providerValidBsn()
129129
public function providerNoScalar()
130130
{
131131
return array(
132-
'array' => array(array('foo', 'bar')),
133-
'object' => array(new stdClass()),
132+
'array' => array(array('foo', 'bar')),
133+
'object' => array(new stdClass()),
134134
'resource' => array(tmpfile()),
135135
'callable' => array(function () {}),
136136
);
@@ -142,7 +142,7 @@ public function providerNoScalar()
142142
public function providerInvalidBsn()
143143
{
144144
return array(
145-
'zeros' => array('000000000'),
145+
'zeros' => array('000000000'),
146146
'invalid1' => array('999999999'),
147147
'invalid2' => array('876543242'),
148148
'toStringObject' => array(new ToStringObject('597944111')),

tests/JsonValidatorTest.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ protected function setUp()
5050
*
5151
* @dataProvider providerValidJson
5252
*/
53-
public function testIsValid($json)
53+
public function testValidate($json)
5454
{
5555
$this->context
5656
->expects($this->never())
@@ -133,8 +133,8 @@ public function providerValidJson()
133133
public function providerNoScalar()
134134
{
135135
return array(
136-
'array' => array(array('foo', 'bar')),
137-
'object' => array(new stdClass()),
136+
'array' => array(array('foo', 'bar')),
137+
'object' => array(new stdClass()),
138138
'resource' => array(tmpfile()),
139139
'callable' => array(function () {}),
140140
);

0 commit comments

Comments
 (0)