Skip to content

Commit bb6301e

Browse files
committed
Fixes
1 parent 809fb28 commit bb6301e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Shell/FixtureCheckShell.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ public function getOptionParser() {
490490
* @param string $string
491491
* @return bool
492492
*/
493-
protected function _isType(string $string) {
493+
protected function _isType($string) {
494494
$map = [
495495
'f' => 'fields',
496496
'c' => 'constraints',

tests/TestCase/Shell/FixtureCheckShellTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public function tearDown() {
6060
* @return void
6161
*/
6262
public function testDiff() {
63-
$this->FixtureCheckShell->runCommand(['diff', '-p', 'Tools']);
63+
$this->FixtureCheckShell->runCommand(['diff', '-p', 'Tools', '-t', 'f,c,i']);
6464

6565
$output = $this->out->output();
6666
$this->assertNotEmpty($output, $output);

0 commit comments

Comments
 (0)