Skip failing assertion on sharded clusters

parent 08b6027f
......@@ -928,7 +928,10 @@ class WatchFunctionalTest extends FunctionalTestCase
}
$this->assertTrue($changeStream->valid());
$this->assertLessThan($pivot, $duration);
if (!$this->isShardedCluster()) {
$this->assertLessThan($pivot, $duration);
}
}
public function testRewindExtractsResumeTokenAndNextResumes()
......
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