File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1585,7 +1585,7 @@ public function testNormalizerNotCalledForUnsetOptions()
1585
1585
Assert::fail ('Should not be called. ' );
1586
1586
});
1587
1587
1588
- $ this ->assertEmpty ( $ this ->resolver ->resolve ());
1588
+ $ this ->assertSame ([], $ this ->resolver ->resolve ());
1589
1589
}
1590
1590
1591
1591
public function testAddNormalizerReturnsThis ()
@@ -1768,7 +1768,7 @@ public function testClearRemovesAllOptions()
1768
1768
1769
1769
$ this ->resolver ->clear ();
1770
1770
1771
- $ this ->assertEmpty ( $ this ->resolver ->resolve ());
1771
+ $ this ->assertSame ([], $ this ->resolver ->resolve ());
1772
1772
}
1773
1773
1774
1774
public function testClearLazyOption ()
@@ -1829,7 +1829,7 @@ public function testClearOptionAndNormalizer()
1829
1829
$ this ->resolver ->setNormalizer ('foo2 ' , fn (Options $ options ) => '' );
1830
1830
1831
1831
$ this ->resolver ->clear ();
1832
- $ this ->assertEmpty ( $ this ->resolver ->resolve ());
1832
+ $ this ->assertSame ([], $ this ->resolver ->resolve ());
1833
1833
}
1834
1834
1835
1835
public function testArrayAccess ()
You can’t perform that action at this time.
0 commit comments