We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1da8a68 commit 89730b4Copy full SHA for 89730b4
kubernetes/e2e_test/test_client.py
@@ -538,12 +538,12 @@ def test_configmap_apis(self):
538
539
json_patch_name = "json_patch_name"
540
json_patch_body = [
541
- {
542
- "op": "add",
543
- "path": "/metadata/json_patch_name",
544
- "value": json_patch_name
545
- }
546
- ]
+ {
+ "op": "add",
+ "path": "/metadata/json_patch_name",
+ "value": json_patch_name
+ }
+ ]
547
resp = api.patch_namespaced_config_map(
548
name=name, namespace='default', body=json_patch_body)
549
self.assertEqual(json_patch_name, resp.metadata.json_patch_name)
0 commit comments