Skip to content

Commit

Permalink
Use dict literal
Browse files Browse the repository at this point in the history
  • Loading branch information
pehala committed Feb 22, 2023
1 parent 1916655 commit 875a63a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions testsuite/tests/kuadrant/authorino/operator/tls/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ def cert_attributes() -> Dict[str, str]:
@pytest.fixture(scope="session")
def cert_attributes_other(cert_attributes) -> Dict[str, str]:
"""Certificate attributes that are partially different from the default ones"""
return dict(O="Other Organization",
OU="Other Unit",
L=cert_attributes["L"],
ST=cert_attributes["ST"],
C=cert_attributes["C"])
return {"O": "Other Organization",
"OU": "Other Unit",
"L": cert_attributes["L"],
"ST": cert_attributes["ST"],
"C": cert_attributes["C"]}


@pytest.fixture(scope="session")
Expand Down

0 comments on commit 875a63a

Please sign in to comment.