Skip to content

Commit cd8737c

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 3bcc216 commit cd8737c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

enterprise_gateway/tests/test_process_proxy.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,9 @@ def test_regex_pattern_validation(self):
206206

207207
variables = {var: "value" for var in valid_vars}
208208
# Also add underscore variables to test they're not substituted even if present
209-
variables.update({"_private_var": "private", "__class__": "dangerous", "__dict__": "dangerous"})
209+
variables.update(
210+
{"_private_var": "private", "__class__": "dangerous", "__dict__": "dangerous"}
211+
)
210212

211213
# Valid variables should be substituted
212214
for var in valid_vars:

0 commit comments

Comments
 (0)