Skip to content

Commit aa61418

Browse files
committed
Removed trailing whitespace.
1 parent bb6923e commit aa61418

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

tests/alerts/test_alerts.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
TIMEOUT = 30
1010

1111
class TestAlerts(SeleniumTestCase):
12-
12+
1313
@pytest.fixture(scope="class", autouse=True)
1414
def create_test_project(self, tester_login):
1515
"""Makes sure we are logged in and have a project open before
@@ -22,7 +22,7 @@ def test_alert(self):
2222
" the codebender plugin." in operation_output.text
2323

2424
def test_remove_sketch(self):
25-
self.delete_project(TEST_PROJECT_NAME)
25+
self.delete_project(TEST_PROJECT_NAME)
2626

2727
def test_library_example(self, tester_logout):
2828
self.open('/libraries')
@@ -40,9 +40,9 @@ def test_library_example(self, tester_logout):
4040
if flash_btn.is_enabled():
4141
assert False
4242
else:
43-
pass
43+
pass
4444

45-
def test_embeded_view(self, tester_logout):
45+
def test_embeded_view(self, tester_logout):
4646
self.open('/embed/microview_test')
4747
output = self.driver.find_element_by_id('cb_cf_operation_output')
4848
assert "To program your Arduino from your browser, install" \
@@ -51,31 +51,31 @@ def test_embeded_view(self, tester_logout):
5151
if microview_test.is_enabled():
5252
assert False
5353
else:
54-
pass
54+
pass
5555

56-
def test_walkthrough_page_2(self, tester_logout):
56+
def test_walkthrough_page_2(self, tester_logout):
5757
self.open('/static/walkthrough/page/2')
5858
output = self.driver.find_element_by_id('cb_cf_operation_output')
5959
assert "To program your Arduino from your browser, install" \
6060
" the codebender plugin." in output.text
6161

62-
def test_walkthrough_page_3(self, tester_logout):
62+
def test_walkthrough_page_3(self, tester_logout):
6363
self.open('/static/walkthrough/page/3')
6464
WebDriverWait(self.driver, TIMEOUT).until(
6565
expected_conditions.text_to_be_present_in_element(
66-
(By.CSS_SELECTOR, "#mycontainer h1 small"),
66+
(By.CSS_SELECTOR, "#mycontainer h1 small"),
6767
"Page 2 of 5"
6868
)
6969
)
7070
current_url = urlparse(self.driver.current_url)
7171
assert current_url.path == '/static/walkthrough/page/2'
7272

7373

74-
def test_walkthrough_page_4(self, tester_logout):
74+
def test_walkthrough_page_4(self, tester_logout):
7575
self.open('/static/walkthrough/page/4')
7676
WebDriverWait(self.driver, TIMEOUT).until(
7777
expected_conditions.text_to_be_present_in_element(
78-
(By.CSS_SELECTOR, "#mycontainer h1 small"),
78+
(By.CSS_SELECTOR, "#mycontainer h1 small"),
7979
"Page 2 of 5"
8080
)
8181
)

0 commit comments

Comments
 (0)