Skip to content

Commit

Permalink
Merge pull request #235 from kianmeng/fix-typos-and-prettify-yml-html
Browse files Browse the repository at this point in the history
Fix typos and prettify yaml/html files
  • Loading branch information
gawel committed Jan 2, 2023
2 parents c75730b + 4a908ac commit ca86011
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
linux:
runs-on: ubuntu-latest
env:
MOZ_HEADLESS: "1"
MOZ_HEADLESS: "1"
strategy:
matrix:
python: [3.7, 3.8, 3.9, "3.10", 3.11]
Expand All @@ -27,8 +27,8 @@ jobs:
run: pip install tox
- name: Run Tox
run: |
export PATH=$PATH:$PWD
tox -e py
export PATH=$PATH:$PWD
tox -e py
- name: Run flake8 / docs
run: tox -e flake8,docs
if: matrix.python == 3.9
Expand Down
6 changes: 3 additions & 3 deletions tests/browser_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ def test_separators(self):
'Some words\ntest. Another word\n\n \n test.',
)
self._simple_test(
'Inline <span> splitted by\nbr<br>tag</span> test',
'Inline splitted by br\ntag test',
'Inline splitted by\nbr\ntag test',
'Inline <span> split by\nbr<br>tag</span> test',
'Inline split by br\ntag test',
'Inline split by\nbr\ntag test',
)
self._simple_test(
'Some words<hr>test. Another word<hr><hr> <hr> test.',
Expand Down
10 changes: 4 additions & 6 deletions tests/test.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
<html>
<body>
<p class="hello" id="hello">Hello world !</p>
<body>
<p class="hello" id="hello">Hello world !</p>

<p id="test">
hello <a href="http://python.org">python</a> !
</p>
</body>
<p id="test">hello <a href="http://python.org">python</a> !</p>
</body>
</html>

0 comments on commit ca86011

Please sign in to comment.