Skip to content

Commit

Permalink
Merge pull request #231 from dansysanalyst/grammar_fix
Browse files Browse the repository at this point in the history
Grammar fix "incompleted"
  • Loading branch information
owenvoke committed Sep 16, 2022
2 parents 0469274 + c76afb4 commit 214ea83
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Adapters/Phpunit/TestResult.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ final class TestResult

public const SKIPPED = 'skipped';

public const INCOMPLETE = 'incompleted';
public const INCOMPLETE = 'incomplete';

public const RISKY = 'risky';

Expand Down
4 changes: 2 additions & 2 deletions tests/Unit/Adapters/PhpunitTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public function itHasTests(): void
! warn example → This is a warning description
✓ pass example
Tests: 1 warnings, 1 risky, 1 incompleted, 1 skipped, 6 passed
Tests: 1 warnings, 1 risky, 1 incomplete, 1 skipped, 6 passed
Time:
EOF,
$output
Expand Down Expand Up @@ -116,7 +116,7 @@ public function itHasRecap(): void
]);

$this->assertConsoleOutputContainsString(
'Tests: 1 warnings, 1 risky, 1 incompleted, 1 skipped, 7 passed',
'Tests: 1 warnings, 1 risky, 1 incomplete, 1 skipped, 7 passed',
$output
);
}
Expand Down

0 comments on commit 214ea83

Please sign in to comment.