Skip to content

Commit 7852790

Browse files
committed
Keep removing useless skip
1 parent 1aee23e commit 7852790

File tree

2 files changed

+0
-13
lines changed

2 files changed

+0
-13
lines changed

tests/SpecTests/ClientSideEncryption/Prose22_RangeExplicitEncryptionTest.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@
2020
use function file_get_contents;
2121
use function get_debug_type;
2222
use function is_int;
23-
use function phpversion;
24-
use function version_compare;
2523

2624
/**
2725
* Prose test 22: Range Explicit Encryption
@@ -41,10 +39,6 @@ public function setUp(): void
4139
{
4240
parent::setUp();
4341

44-
if (version_compare(phpversion('mongodb'), '1.20.0dev', '>=')) {
45-
$this->markTestIncomplete('Range protocol V1 is not supported by ext-mongodb 1.20+');
46-
}
47-
4842
if ($this->isStandalone()) {
4943
$this->markTestSkipped('Range explicit encryption tests require replica sets');
5044
}

tests/SpecTests/ClientSideEncryptionSpecTest.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,9 @@
3838
use function in_array;
3939
use function iterator_to_array;
4040
use function json_decode;
41-
use function phpversion;
4241
use function sprintf;
4342
use function str_repeat;
44-
use function str_starts_with;
4543
use function substr;
46-
use function version_compare;
4744

4845
use const JSON_THROW_ON_ERROR;
4946

@@ -167,10 +164,6 @@ public function testClientSideEncryption(stdClass $test, ?array $runOn, array $d
167164
$this->markTestIncomplete(self::$incompleteTests[$this->dataDescription()]);
168165
}
169166

170-
if (str_starts_with($this->dataDescription(), 'fle2v2-Range-') && version_compare(phpversion('mongodb'), '1.20.0dev', '>=')) {
171-
$this->markTestIncomplete('Range protocol V1 is not supported by ext-mongodb 1.20+');
172-
}
173-
174167
if (isset($runOn)) {
175168
$this->checkServerRequirements($runOn);
176169
}

0 commit comments

Comments
 (0)