@@ -23,9 +23,9 @@ public function getPromiseTestAdapter(callable $canceller = null)
2323 /** @test */
2424 public function shouldRejectWithoutCreatingGarbageCyclesIfCancellerRejectsWithException ()
2525 {
26- if ($ this ->getTestResultObject ()->getCollectCodeCoverageInformation () === true ) {
27- $ this ->markTestSkipped ('This test has memory leaks when code coverage is collected ' );
28- }
26+ // if ($this->getTestResultObject()->getCollectCodeCoverageInformation() === true) {
27+ // $this->markTestSkipped('This test has memory leaks when code coverage is collected');
28+ // }
2929
3030 gc_collect_cycles ();
3131 $ deferred = new Deferred (function ($ resolve , $ reject ) {
@@ -40,9 +40,9 @@ public function shouldRejectWithoutCreatingGarbageCyclesIfCancellerRejectsWithEx
4040 /** @test */
4141 public function shouldRejectWithoutCreatingGarbageCyclesIfParentCancellerRejectsWithException ()
4242 {
43- if ($ this ->getTestResultObject ()->getCollectCodeCoverageInformation () === true ) {
44- $ this ->markTestSkipped ('This test has memory leaks when code coverage is collected ' );
45- }
43+ // if ($this->getTestResultObject()->getCollectCodeCoverageInformation() === true) {
44+ // $this->markTestSkipped('This test has memory leaks when code coverage is collected');
45+ // }
4646
4747 gc_collect_cycles ();
4848 $ deferred = new Deferred (function ($ resolve , $ reject ) {
@@ -57,9 +57,9 @@ public function shouldRejectWithoutCreatingGarbageCyclesIfParentCancellerRejects
5757 /** @test */
5858 public function shouldRejectWithoutCreatingGarbageCyclesIfCancellerHoldsReferenceAndExplicitlyRejectWithException ()
5959 {
60- if ($ this ->getTestResultObject ()->getCollectCodeCoverageInformation () === true ) {
61- $ this ->markTestSkipped ('This test has memory leaks when code coverage is collected ' );
62- }
60+ // if ($this->getTestResultObject()->getCollectCodeCoverageInformation() === true) {
61+ // $this->markTestSkipped('This test has memory leaks when code coverage is collected');
62+ // }
6363
6464 gc_collect_cycles ();
6565 $ deferred = new Deferred (function () use (&$ deferred ) { });
0 commit comments