From e4a8f68f8910e513bb3e18bcd31ccf5309f7e4de Mon Sep 17 00:00:00 2001 From: Matt Dale <9760375+matthewdale@users.noreply.github.com> Date: Fri, 16 Jun 2023 13:46:32 -0700 Subject: [PATCH] Skip frequently failing TestClientSideEncryptionProse test case. (#1297) --- mongo/integration/client_side_encryption_prose_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mongo/integration/client_side_encryption_prose_test.go b/mongo/integration/client_side_encryption_prose_test.go index 88b2b89855..ec248377a2 100644 --- a/mongo/integration/client_side_encryption_prose_test.go +++ b/mongo/integration/client_side_encryption_prose_test.go @@ -379,6 +379,9 @@ func TestClientSideEncryptionProse(t *testing.T) { } }) mt.Run("4. bson size limits", func(mt *mtest.T) { + // TODO(GODRIVER-2872): Fix and unskip this test case. + mt.Skip("Test fails frequently, skipping. See GODRIVER-2872") + kmsProviders := map[string]map[string]interface{}{ "local": { "key": localMasterKey,