We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 349d3d5 commit 82f3b31Copy full SHA for 82f3b31
src/TestUtils/WorkshopExerciseTest.php
@@ -104,15 +104,6 @@ public function assertVerifyWasSuccessful(): void
104
105
public function assertVerifyWasNotSuccessful(): void
106
{
107
- $failures = (new Collection($this->results->getIterator()->getArrayCopy()))
108
- ->filter(function (ResultInterface $result) {
109
- return $result instanceof FailureInterface;
110
- })
111
- ->map(function (FailureInterface $failure) {
112
- return get_class($failure);
113
114
- ->implode(', ');
115
-
116
$this->assertFalse($this->results->isSuccessful());
117
}
118
0 commit comments