Skip to content

Commit 9dc1a87

Browse files
committed
Update tests
1 parent 85233b3 commit 9dc1a87

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/edge_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def test_edge(self):
1010
if self.browser != "edge":
1111
print("\n This test is only for Microsoft Edge (Chromium)!")
1212
print(" (Run with: '--browser=edge')")
13-
self.skip_test("This test is only for Microsoft Edge (Chromium)!")
13+
self.skip("This test is only for Microsoft Edge (Chromium)!")
1414
self.open("edge://settings/help")
1515
self.assert_element('img[alt="Edge logo"] + span')
1616
self.highlight('div[role="main"] div div div + div')

examples/test_skype_site.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def test_skype_website_on_mobile(self):
1515
if not self.mobile_emulator:
1616
print("\n This test is only for mobile devices / emulators!")
1717
print(" (Usage: '--mobile' with a Chromium-based browser.)")
18-
self.skip_test("Please rerun this test using '--mobile!'!")
18+
self.skip("Please rerun this test using '--mobile!'!")
1919
self.open("https://www.skype.com/en/")
2020
self.assert_text("Install Skype", "div.appInfo")
2121
self.highlight("div.appBannerContent")

0 commit comments

Comments
 (0)