From c90f9bcf5bffd3157dbdd092cde4c01621e2556d Mon Sep 17 00:00:00 2001 From: Adrian Dole Date: Fri, 31 May 2024 14:25:17 -0700 Subject: [PATCH] Whitespace --- source/client-side-encryption/tests/README.md | 48 +++++++++---------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/source/client-side-encryption/tests/README.md b/source/client-side-encryption/tests/README.md index 304e0f3d04..b63a7bf6d6 100644 --- a/source/client-side-encryption/tests/README.md +++ b/source/client-side-encryption/tests/README.md @@ -3213,8 +3213,8 @@ This test uses a mock server with configurable failpoints to simulate network fa ``` python -u kms_failpoint_server.py --port 9003 ``` -See the [TLS tests](#10-kms-tls-tests) for running the mock server on Evergreen. See [the mock server implementation](TODO) -and the [C driver tests](TODO) for how to configure failpoints. +See the [TLS tests](#10-kms-tls-tests) for running the mock server on Evergreen. See +[the mock server implementation](TODO) and the [C driver tests](TODO) for how to configure failpoints. #### Setup @@ -3232,32 +3232,32 @@ and the [C driver tests](TODO) for how to configure failpoints. 2. Configure the mock server to simulate two HTTP failures and two TCP failures. 3. Call `client_encryption.createDataKey()` with "aws" as the provider and the following masterKey: - ```javascript - { - "region": "foo", - "key": "bar", - "endpoint": "127.0.0.1:9003", - } - ``` +```javascript +{ + "region": "foo", + "key": "bar", + "endpoint": "127.0.0.1:9003", +} +``` Expect this to succeed. Repeat this test with the following providers and masterKeys: #### "azure" provider - ```javascript - { - "keyVaultEndpoint": "127.0.0.1:9003", - "keyName": "foo", - } - ``` +```javascript +{ + "keyVaultEndpoint": "127.0.0.1:9003", + "keyName": "foo", +} +``` #### "gcp" provider - ```javascript - { - "projectId": "foo", - "location": "bar", - "keyRing": "baz", - "keyName": "qux", - "endpoint": "127.0.0.1:9003" - } - ``` \ No newline at end of file +```javascript +{ + "projectId": "foo", + "location": "bar", + "keyRing": "baz", + "keyName": "qux", + "endpoint": "127.0.0.1:9003" +} +``` \ No newline at end of file