Skip to content

Commit

Permalink
Fix black formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Cito committed May 3, 2020
1 parent 87d123b commit a7aa6c6
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions tests/test_graphiqlview.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,11 @@
@pytest.fixture
def pretty_response():
return (
"{\n" ' "data": {\n' ' "test": "Hello World"\n' " }\n" "}"
.replace('"', '\\"')
.replace("\n", "\\n")
"{\n"
' "data": {\n'
' "test": "Hello World"\n'
" }\n"
"}".replace('"', '\\"').replace("\n", "\\n")
)


Expand Down

0 comments on commit a7aa6c6

Please sign in to comment.