From af04a9cdde68248cb5ba05de8024b9310711f6d7 Mon Sep 17 00:00:00 2001 From: Andreas Braun Date: Tue, 15 Oct 2024 09:13:26 +0200 Subject: [PATCH] PHPLIB-1492: Skip spec tests for sort in update operations --- tests/UnifiedSpecTests/UnifiedSpecTest.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/UnifiedSpecTests/UnifiedSpecTest.php b/tests/UnifiedSpecTests/UnifiedSpecTest.php index ef9efc9d7..19459077e 100644 --- a/tests/UnifiedSpecTests/UnifiedSpecTest.php +++ b/tests/UnifiedSpecTests/UnifiedSpecTest.php @@ -39,6 +39,11 @@ class UnifiedSpecTest extends FunctionalTestCase // mongoc_cluster_stream_for_server does not retry handshakes (CDRIVER-4532, PHPLIB-1033, PHPLIB-1042) 'retryable-reads/retryable reads handshake failures' => 'Handshakes are not retried (CDRIVER-4532)', 'retryable-writes/retryable writes handshake failures' => 'Handshakes are not retried (CDRIVER-4532)', + // sort option for update operations is not supported (PHPLIB-1492) + 'crud/BulkWrite replaceOne-sort' => 'Sort for replace operations is not supported (PHPLIB-1492)', + 'crud/BulkWrite updateOne-sort' => 'Sort for update operations is not supported (PHPLIB-1492)', + 'crud/replaceOne-sort' => 'Sort for replace operations is not supported (PHPLIB-1492)', + 'crud/updateOne-sort' => 'Sort for update operations is not supported (PHPLIB-1492)', ]; /** @var array */