Skip to content

Commit 6e7d758

Browse files
committed
Fix test fails with --prefer-lowest and hhvm
1 parent 777e16b commit 6e7d758

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"league/container": "~2.3",
2929
"queue-interop/queue-interop": "^0.6",
3030
"queue-interop/amqp-interop": "^0.6",
31-
"ackintosh/snidel": "^0.10"
31+
"ackintosh/snidel": "^0.10.2"
3232
},
3333
"suggest": {
3434
"php-amqplib/php-amqplib": "Allow sending messages to an AMQP server using php-amqplib",

tests/Driver/FlatFileDriverTest.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,11 @@ public function testPopMessage()
9595

9696
public function testPopMessageWhichPushedAfterTheInitialCollect()
9797
{
98+
// Snidel is only supported on PHP.
99+
if (defined('HHVM_VERSION')) {
100+
$this->markTestSkipped();
101+
}
102+
98103
$this->driver->createQueue('send-newsletter');
99104
$snidel = new Snidel();
100105

0 commit comments

Comments
 (0)