File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -623,7 +623,7 @@ public function testResolveWithoutOptionSucceedsIfRequiredAndDefaultValue()
623
623
));
624
624
625
625
$ this ->assertEquals (array (
626
- 'foo ' => 'bar '
626
+ 'foo ' => 'bar ' ,
627
627
), $ this ->resolver ->resolve (array ()));
628
628
}
629
629
@@ -637,7 +637,7 @@ public function testResolveWithoutOptionSucceedsIfDefaultValueAndRequired()
637
637
));
638
638
639
639
$ this ->assertEquals (array (
640
- 'foo ' => 'bar '
640
+ 'foo ' => 'bar ' ,
641
641
), $ this ->resolver ->resolve (array ()));
642
642
}
643
643
@@ -652,7 +652,7 @@ public function testResolveSucceedsIfOptionRequiredAndValueAllowed()
652
652
653
653
$ options = array (
654
654
'one ' => '1 ' ,
655
- 'two ' => '2 '
655
+ 'two ' => '2 ' ,
656
656
);
657
657
658
658
$ this ->assertEquals ($ options , $ this ->resolver ->resolve ($ options ));
Original file line number Diff line number Diff line change @@ -372,7 +372,7 @@ public function testReplaceClearsAndSets()
372
372
'two ' => '2 ' ,
373
373
'three ' => function (Options $ options ) {
374
374
return '2 ' === $ options ['two ' ] ? '3 ' : 'foo ' ;
375
- }
375
+ },
376
376
));
377
377
378
378
$ this ->assertEquals (array (
@@ -389,7 +389,6 @@ public function testClearRemovesAllOptions()
389
389
$ this ->options ->clear ();
390
390
391
391
$ this ->assertEmpty ($ this ->options ->all ());
392
-
393
392
}
394
393
395
394
/**
You can’t perform that action at this time.
0 commit comments