summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2023-04-26 19:15:54 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2023-04-27 00:15:49 +0000
commita6e1dccd481d73cf886fc6ace72e9422c0caef91 (patch)
treefcdcf66de4122f8d9877f05dcb42ced281744f94 /buildscripts
parent24dc9e3e84f136034800d63441700a00e65fb9e2 (diff)
downloadmongo-a6e1dccd481d73cf886fc6ace72e9422c0caef91.tar.gz
SERVER-75858 Fix tests
Diffstat (limited to 'buildscripts')
-rw-r--r--buildscripts/idl/tests/test_binder.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/buildscripts/idl/tests/test_binder.py b/buildscripts/idl/tests/test_binder.py
index 1fd688896f7..8cf23521b0f 100644
--- a/buildscripts/idl/tests/test_binder.py
+++ b/buildscripts/idl/tests/test_binder.py
@@ -2908,21 +2908,6 @@ class TestBinder(testcase.IDLTestcase):
d1: danger
"""), idl.errors.ERROR_ID_INHERITANCE_AND_DISABLE_CHECK_NOT_ALLOWED)
- # Test commands and unsafe_dangerous_disable_extra_field_duplicate_checks are disallowed
- self.assert_bind_fail(
- test_preamble + textwrap.dedent("""
- commands:
- dangerc:
- description: foo
- namespace: ignored
- command_name: dangerc
- api_version: ""
- strict: false
- unsafe_dangerous_disable_extra_field_duplicate_checks: true
- fields:
- foo: string
- """), idl.errors.ERROR_ID_COMMAND_AND_DISABLE_CHECK_NOT_ALLOWED)
-
if __name__ == '__main__':