Skip to content

Commit a98ff73

Browse files
committed
fix: more cosmetics.
Signed-off-by: Alexander Cristurean <acristur@redhat.com>
1 parent 20e8ca8 commit a98ff73

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

testsuite/gateway/gateway_api/hostname.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from testsuite.certificates import Certificate
99
from testsuite.config import settings
1010
from testsuite.httpx import KuadrantClient
11-
from testsuite.gateway import Hostname, Exposer
11+
from testsuite.gateway import Exposable, Hostname, Exposer
1212
from testsuite.utils import generate_tail
1313

1414

@@ -53,7 +53,7 @@ def base_domain(self) -> str:
5353
) from exc
5454
return f'{generate_tail(5)}.{secret.model["metadata"]["annotations"]["base_domain"]}'
5555

56-
def expose_hostname(self, name, exposable) -> Hostname:
56+
def expose_hostname(self, name, exposable: Exposable) -> Hostname:
5757
return StaticHostname(
5858
f"{name}.{self.base_domain}",
5959
exposable.get_tls_cert if self.verify is None else lambda _hostname: self.verify, # type: ignore

0 commit comments

Comments
 (0)