Commit 978a8e43 authored by Jeremy Mikola's avatar Jeremy Mikola

PHPLIB-416: Remove skip for consecutive resume test

Fixes from PHPLIB-442 and PHPLIB-441 allow this to pass.
parent 5bef5d18
...@@ -18,12 +18,6 @@ use stdClass; ...@@ -18,12 +18,6 @@ use stdClass;
*/ */
class ChangeStreamsSpecTest extends FunctionalTestCase class ChangeStreamsSpecTest extends FunctionalTestCase
{ {
/* These should all pass before the driver can be considered compatible with
* MongoDB 4.2. */
private static $incompleteTests = [
'change-streams: Test consecutive resume' => 'PHPLIB-442, PHPLIB-416',
];
/** /**
* Assert that the expected and actual command documents match. * Assert that the expected and actual command documents match.
* *
...@@ -75,10 +69,6 @@ class ChangeStreamsSpecTest extends FunctionalTestCase ...@@ -75,10 +69,6 @@ class ChangeStreamsSpecTest extends FunctionalTestCase
{ {
$this->setName($name); $this->setName($name);
if (isset(self::$incompleteTests[$name])) {
$this->markTestIncomplete(self::$incompleteTests[$name]);
}
$this->checkServerRequirements($this->createRunOn($test)); $this->checkServerRequirements($this->createRunOn($test));
if (!isset($databaseName, $collectionName, $database2Name, $collection2Name)) { if (!isset($databaseName, $collectionName, $database2Name, $collection2Name)) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment