Skip to content

Commit

Permalink
PHPLIB-1492: Skip spec tests for sort in update operations
Browse files Browse the repository at this point in the history
  • Loading branch information
alcaeus committed Oct 15, 2024
1 parent d9fc698 commit af04a9c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/UnifiedSpecTests/UnifiedSpecTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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<string, string> */
Expand Down

0 comments on commit af04a9c

Please sign in to comment.