File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ def test_oidc(
168168 create_items_from_yaml (kube_apis , svc_src , ingress_controller_prerequisites .namespace )
169169
170170 with sync_playwright () as playwright :
171- run_oidc (playwright .chromium , ingress_controller_endpoint .public_ip )
171+ run_oidc (playwright .chromium , ingress_controller_endpoint .public_ip , ingress_controller_endpoint . port_ssl )
172172
173173 replace_configmap_from_yaml (
174174 kube_apis .v1 ,
@@ -183,9 +183,9 @@ def test_oidc(
183183 )
184184
185185
186- def run_oidc (browser_type , ip_address ):
186+ def run_oidc (browser_type , ip_address , port ):
187187
188- browser = browser_type .launch (headless = True , args = [f"--host-resolver-rules=MAP * { ip_address } " ])
188+ browser = browser_type .launch (headless = True , args = [f"--host-resolver-rules=MAP * { ip_address } : { port } " ])
189189 context = browser .new_context (ignore_https_errors = True )
190190
191191 try :
You can’t perform that action at this time.
0 commit comments