Skip to content

Commit 941e981

Browse files
[py] Fix flake8 in test
1 parent 84b65b1 commit 941e981

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

py/test/selenium/webdriver/common/upload_tests.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,7 @@ def test_can_upload_two_files(driver, pages):
3939
current_dir = os.path.dirname(os.path.realpath(__file__))
4040
driver.find_element(By.ID, 'upload')\
4141
.send_keys(
42-
os.path.join(current_dir, "test_file.txt") +
43-
"\n" +
44-
os.path.join(current_dir, "test_file2.txt")
42+
os.path.join(current_dir, "test_file.txt") + "\n" + os.path.join(current_dir, "test_file2.txt")
4543
)
4644
driver.find_element(By.ID, 'go').click()
4745
driver.switch_to.frame(driver.find_element(By.ID, "upload_target"))

0 commit comments

Comments
 (0)