Skip to content

Commit

Permalink
test: fix integration tests (microsoft#161)
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt committed Apr 5, 2023
1 parent 4b470ea commit 2a7a458
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_playwright.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,8 +219,8 @@ def test_base_url(page, base_url):
assert base_url == "https://example.com"
page.goto("/foobar")
assert page.url == "https://example.com/foobar"
page.goto("http://whatsmyuseragent.org")
assert page.url == "http://whatsmyuseragent.org/"
page.goto("https://example.org")
assert page.url == "https://example.org/"
"""
)
result = testdir.runpytest("--base-url", "https://example.com")
Expand Down

0 comments on commit 2a7a458

Please sign in to comment.