Skip to content

Commit dab657d

Browse files
committed
Remove unused local variables in tests
1 parent 471ca8e commit dab657d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Tests/Command/LintCommandTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public function testLintFileNotReadable()
8585
$filename = $this->createFile('');
8686
unlink($filename);
8787

88-
$ret = $tester->execute(['filename' => $filename], ['decorated' => false]);
88+
$tester->execute(['filename' => $filename], ['decorated' => false]);
8989
}
9090

9191
/**

Tests/ParserTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public function testTabsInYaml()
110110

111111
foreach ($yamls as $yaml) {
112112
try {
113-
$content = $this->parser->parse($yaml);
113+
$this->parser->parse($yaml);
114114

115115
$this->fail('YAML files must not contain tabs');
116116
} catch (\Exception $e) {

0 commit comments

Comments
 (0)