Skip to content

Commit

Permalink
pep8
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Brognoli committed Feb 14, 2019
1 parent aaf2400 commit 9de1721
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions luqum/tests/test_es_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,12 +199,19 @@ def test_complex_search(self):

self.assertListEqual(
self._ask_luqum(
"illustrators:name:Grand* AND illustrators:(-name:grandpr* AND (name:J*on OR birthdate:[1950-01-01 TO 1970-01-01])) AND title:phoenux~2"
"""
title:phoenux~2 AND
illustrators:name:Grand* AND
illustrators:(
-name:grandpr* AND (
name:J*on OR birthdate:[1950-01-01 TO 1970-01-01]
)
)
"""
),
['Harry Potter and the Order of the Phoenix'],
["Harry Potter and the Order of the Phoenix"],
)


@classmethod
def tearDownClass(cls):
if ES6:
Expand Down

0 comments on commit 9de1721

Please sign in to comment.