Skip to content

Commit

Permalink
Fixing JFE string like tests
Browse files Browse the repository at this point in the history
  • Loading branch information
constantinius committed Nov 22, 2021
1 parent 3b9983e commit 9117412
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/parsers/jfe/test_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ def test_string_like():
'some%',
nocase=False,
wildcard='%',
singlechar=None,
escapechar=None,
singlechar='.',
escapechar='\\',
not_=False,
)

Expand All @@ -110,8 +110,8 @@ def test_string_like_wildcard():
'some*',
nocase=False,
wildcard='*',
singlechar=None,
escapechar=None,
singlechar='.',
escapechar='\\',
not_=False,
)

Expand Down

0 comments on commit 9117412

Please sign in to comment.