Skip to content
This repository has been archived by the owner on Oct 19, 2020. It is now read-only.

Commit

Permalink
Fixed class error
Browse files Browse the repository at this point in the history
  • Loading branch information
webysther committed Sep 20, 2016
1 parent ae3bf86 commit e8ac862
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Command/CodeCoverage.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
(new Process('rm -rf coverage'))->run();

mkdir('coverage');
$cmd = $cc . ' tests/Folha/Durin/Adapters/Resource/Guia --colors --coverage-php=coverage/result.cov';
$cmd = $cc . ' --colors --coverage-php=coverage/result.cov';
$this->output->writeln('<comment>Command executing ' . $cmd . '</comment>');
$process = new Process($cmd);
$process->setTimeout(3600);
Expand Down

0 comments on commit e8ac862

Please sign in to comment.