diff --git a/test/client-side-encryption/spec/legacy/fle2v2-CreateCollection.json b/test/client-side-encryption/spec/legacy/fle2v2-CreateCollection.json index 819d2eec3..cc8bd1714 100644 --- a/test/client-side-encryption/spec/legacy/fle2v2-CreateCollection.json +++ b/test/client-side-encryption/spec/legacy/fle2v2-CreateCollection.json @@ -158,9 +158,6 @@ "command": { "create": "encryptedCollection", "encryptedFields": { - "escCollection": null, - "ecocCollection": null, - "eccCollection": null, "fields": [ { "path": "firstName", @@ -343,9 +340,6 @@ "command": { "create": "encryptedCollection", "encryptedFields": { - "escCollection": null, - "ecocCollection": null, - "eccCollection": null, "fields": [ { "path": "firstName", @@ -851,9 +845,6 @@ "command": { "create": "encryptedCollection", "encryptedFields": { - "escCollection": null, - "ecocCollection": null, - "eccCollection": null, "fields": [ { "path": "firstName", @@ -1048,9 +1039,6 @@ "command": { "create": "encryptedCollection", "encryptedFields": { - "escCollection": null, - "ecocCollection": null, - "eccCollection": null, "fields": [ { "path": "firstName", @@ -1367,9 +1355,6 @@ "command": { "create": "encryptedCollection", "encryptedFields": { - "escCollection": null, - "ecocCollection": null, - "eccCollection": null, "fields": [ { "path": "firstName", @@ -1635,9 +1620,6 @@ "command": { "create": "encryptedCollection", "encryptedFields": { - "escCollection": null, - "ecocCollection": null, - "eccCollection": null, "fields": [ { "path": "firstName", diff --git a/test/utils_spec_runner.py b/test/utils_spec_runner.py index 4ca6f1cc5..21cc3e6d8 100644 --- a/test/utils_spec_runner.py +++ b/test/utils_spec_runner.py @@ -430,12 +430,6 @@ class SpecRunner(IntegrationTest): elif key not in actual: self.fail(f"Expected key [{key}] in {actual!r}") else: - # Workaround an incorrect command started event in fle2v2-CreateCollection.yml - # added in DRIVERS-2524. - if key == "encryptedFields": - for n in ("eccCollection", "ecocCollection", "escCollection"): - if val.get(n) is None: - val.pop(n, None) self.assertEqual( val, decode_raw(actual[key]), f"Key [{key}] in {actual}" )