Skip to content

Commit

Permalink
Merge pull request #89 from matze-dd/Issue-86
Browse files Browse the repository at this point in the history
Issue 86
  • Loading branch information
matze-dd authored Oct 22, 2020
2 parents a5bb14d + bb63efb commit 022e7df
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ Work in progress
(issue [#80](../../issues/80))
- yalafi core
- added 'ru' for option --lang (issue [#84](../../issues/84))
- fixed problem in tests/test_packages/test\_latex\_builtins.py
(issue [#86](../../issues/86))
- README.md: minor edits

Version 1.1.6 (2020/10/19)
Expand Down
4 changes: 2 additions & 2 deletions tests/test_packages/test_latex_builtins.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def get_plain(latex):
]

@pytest.mark.parametrize('latex,plain_expected', data_test_macros_latex)
def test_macros_latex_builtins(latex, plain_expected):
def test_macros_latex(latex, plain_expected):
plain = get_plain(latex)
assert plain == plain_expected

Expand Down Expand Up @@ -157,7 +157,7 @@ def test_specials(latex, plain_expected):
]

@pytest.mark.parametrize('latex,plain_expected', data_test_environments)
def test_macros_latex(latex, plain_expected):
def test_environments(latex, plain_expected):
plain = get_plain(latex)
assert plain == plain_expected

0 comments on commit 022e7df

Please sign in to comment.