Skip to content

Commit 1e6516a

Browse files
committed
format
1 parent c267d1f commit 1e6516a

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

test/make_internal_ssl.py

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,14 @@ def make_certs():
3131
"DNS:localhost",
3232
]
3333
certipy = Certipy(store_dir=ssl_dir)
34-
_trust_bundles = certipy.trust_from_graph({
35-
"backend-ca": ["proxy-client-ca"],
36-
"proxy-client-ca": ["backend-ca"],
37-
})
34+
_trust_bundles = certipy.trust_from_graph(
35+
{
36+
"backend-ca": ["proxy-client-ca"],
37+
"proxy-client-ca": ["backend-ca"],
38+
}
39+
)
3840
for name in ("backend", "proxy-client"):
39-
certipy.create_signed_pair(
40-
name, f"{name}-ca", alt_names=alt_names
41-
)
42-
41+
certipy.create_signed_pair(name, f"{name}-ca", alt_names=alt_names)
4342

4443

4544
async def client_connected(reader, writer):

0 commit comments

Comments
 (0)