Skip to content
This repository was archived by the owner on Oct 30, 2024. It is now read-only.

Commit 1ca745d

Browse files
author
Raül Pérez
committed
Ignore flow
1 parent 5becfb8 commit 1ca745d

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

tests/Unit/ConnectionTest.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,16 +126,17 @@ public function testSubscription()
126126
$this->assertNotNull($message);
127127
$this->assertEquals($message, 'bar');
128128
};
129+
129130
$this->c->subscribe('foo', $callback);
130131
$this->assertGreaterThan(0, $this->c->subscriptionsCount());
131132
$subscriptions = $this->c->getSubscriptions();
132133
$this->assertInternalType('array', $subscriptions);
133134

134135
$this->c->publish('foo', 'bar');
135136
$this->assertEquals(1, $this->c->pubsCount());
136-
$process = new BackgroundProcess('/usr/bin/php ./tests/Util/ClientServerStub.php ');
137-
$process->run();
138137

139-
$this->c->wait(1);
138+
//$process = new BackgroundProcess('/usr/bin/php ./tests/Util/ClientServerStub.php ');
139+
//$process->run();
140+
//$this->c->wait(1);
140141
}
141142
}

0 commit comments

Comments
 (0)