Skip to content

Commit a0a1929

Browse files
committed
remove semicolons
1 parent ee86319 commit a0a1929

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

tests/ArrayCompareTest.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public function setUp()
1616
/** @test */
1717
public function returnsAnArray()
1818
{
19-
$this->assertTrue( is_array($this->diff::compare([],[])) );
19+
$this->assertTrue( is_array($this->diff->compare([],[])) );
2020
}
2121

2222
/** @test */
@@ -32,8 +32,8 @@ public function DetectsTheDifferenceOnStringValue()
3232
'c' => uniqid(),
3333
];
3434

35-
$this->assertEquals( count($this->diff::compare($new,$old)), 1 );
36-
$this->assertTrue( isset($this->diff::compare($new,$old)['c']) );
35+
$this->assertEquals( count($this->diff->compare($new,$old)), 1 );
36+
$this->assertTrue( isset($this->diff->compare($new,$old)['c']) );
3737
}
3838

3939
/** @test */
@@ -52,8 +52,8 @@ public function DetectsChangeFromStringToArray()
5252
'c' => uniqid(),
5353
];
5454

55-
$this->assertEquals( count($this->diff::compare($new,$old)), 1 );
56-
$this->assertTrue( is_array($this->diff::compare($new,$old)['c']) );
55+
$this->assertEquals( count($this->diff->compare($new,$old)), 1 );
56+
$this->assertTrue( is_array($this->diff->compare($new,$old)['c']) );
5757
}
5858

5959
/** @test */
@@ -75,7 +75,7 @@ public function DetectsChangesOnNestedArrays()
7575
],
7676
];
7777

78-
$this->assertEquals( count($this->diff::compare($new,$old)), 1 );
79-
$this->assertTrue( isset($this->diff::compare($new,$old)['c']['f']) );
78+
$this->assertEquals( count($this->diff->compare($new,$old)), 1 );
79+
$this->assertTrue( isset($this->diff->compare($new,$old)['c']['f']) );
8080
}
8181
}

0 commit comments

Comments
 (0)