Skip to content

Commit 3648093

Browse files
gtritchiekimberlythegeek
authored andcommitted
Update axe-core to 3.3.2 (#174)
* Update axe-core to 3.3.2 - used integrity value from https://github.com/pa11y/pa11y-runner-axe/blob/master/package-lock.json * fix tests for firefox and chrome drivers
1 parent 475c9f4 commit 3648093

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ axe-selenium-python
33

44
axe-selenium-python integrates aXe and selenium to enable automated web accessibility testing.
55

6-
**This version of axe-selenium-python is using axe-core@3.1.2.**
6+
**This version of axe-selenium-python is using axe-core@3.3.2.**
77

88
.. image:: https://img.shields.io/badge/license-MPL%202.0-blue.svg
99
:target: https://github.com/mozilla-services/axe-selenium-python/blob/master/LICENSE.txt

axe_selenium_python/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

axe_selenium_python/tests/test_axe.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def test_run_axe_sample_page_firefox(firefox_driver):
4040
"""Run axe against sample page and verify JSON output is as expected."""
4141
data = _perform_axe_run(firefox_driver)
4242

43-
assert len(data["inapplicable"]) == 50
43+
assert len(data["inapplicable"]) == 60
4444
assert len(data["incomplete"]) == 0
4545
assert len(data["passes"]) == 7
4646
assert len(data["violations"]) == 8
@@ -51,7 +51,7 @@ def test_run_axe_sample_page_chrome(chrome_driver):
5151
"""Run axe against sample page and verify JSON output is as expected."""
5252
data = _perform_axe_run(chrome_driver)
5353

54-
assert len(data["inapplicable"]) == 50
54+
assert len(data["inapplicable"]) == 60
5555
assert len(data["incomplete"]) == 0
5656
assert len(data["passes"]) == 7
5757
assert len(data["violations"]) == 8

0 commit comments

Comments
 (0)