Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Run.php (Fix depricated messages when running tests) #6618

Merged
merged 1 commit into from Dec 25, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Codeception/Command/Run.php
Expand Up @@ -419,7 +419,7 @@ public function execute(InputInterface $input, OutputInterface $output): int

if ($this->options['shard']) {
$this->output->writeln(
"[Shard ${userOptions['shard']}] <info>Running subset of tests</info>"
"[Shard {$userOptions['shard']}] <info>Running subset of tests</info>"
);
}

Expand Down Expand Up @@ -502,7 +502,7 @@ public function execute(InputInterface $input, OutputInterface $output): int

if ($this->options['shard']) {
$this->output->writeln(
"[Shard ${userOptions['shard']}] <info>Merge this result with other shards to see the complete report</info>"
"[Shard {$userOptions['shard']}] <info>Merge this result with other shards to see the complete report</info>"
);
}

Expand Down