Skip to content

Commit 89888de

Browse files
committed
Fix deprecation warnings in test setup
1 parent 9eee6f3 commit 89888de

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def driver():
1414
chrome_options.add_argument('headless')
1515
chrome_options.add_argument('window-size=1200x800')
1616
try:
17-
b = webdriver.Chrome(chrome_options=chrome_options)
17+
b = webdriver.Chrome(options=chrome_options)
1818
except WebDriverException as e:
1919
pytest.skip(force_text(e))
2020
else:

tests/testapp/settings.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,4 @@
5252
AWS_STORAGE_BUCKET_NAME = 'test-bucket'
5353
AWS_S3_REGION_NAME = 'eu-central-1'
5454
AWS_S3_SIGNATURE_VERSION = 's3v4'
55+
AWS_DEFAULT_ACL = None

0 commit comments

Comments
 (0)