@@ -23,9 +23,9 @@ public function getPromiseTestAdapter(callable $canceller = null)
23
23
/** @test */
24
24
public function shouldRejectWithoutCreatingGarbageCyclesIfCancellerRejectsWithException ()
25
25
{
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
+ // }
29
29
30
30
gc_collect_cycles ();
31
31
$ deferred = new Deferred (function ($ resolve , $ reject ) {
@@ -40,9 +40,9 @@ public function shouldRejectWithoutCreatingGarbageCyclesIfCancellerRejectsWithEx
40
40
/** @test */
41
41
public function shouldRejectWithoutCreatingGarbageCyclesIfParentCancellerRejectsWithException ()
42
42
{
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
+ // }
46
46
47
47
gc_collect_cycles ();
48
48
$ deferred = new Deferred (function ($ resolve , $ reject ) {
@@ -57,9 +57,9 @@ public function shouldRejectWithoutCreatingGarbageCyclesIfParentCancellerRejects
57
57
/** @test */
58
58
public function shouldRejectWithoutCreatingGarbageCyclesIfCancellerHoldsReferenceAndExplicitlyRejectWithException ()
59
59
{
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
+ // }
63
63
64
64
gc_collect_cycles ();
65
65
$ deferred = new Deferred (function () use (&$ deferred ) { });
0 commit comments