Skip to content

Commit

Permalink
fix line length
Browse files Browse the repository at this point in the history
dtgoitia committed Aug 4, 2018
1 parent 153cba7 commit c9aafc8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/test_query.py
Original file line number Diff line number Diff line change
@@ -555,12 +555,12 @@ def test_get_opposite_dub_action(input, output):
(1, {(0, Action.upvote.name), }),
(2, {(0, Action.downvote.name), }),
(3, {(0, Action.upvote.name), }),
(4, {(1, Action.upvote.name), (0, Action.upvote.name), }),
(5, {(2, Action.upvote.name), (1, Action.upvote.name), (0, Action.upvote.name), }),
(6, {(2, Action.downvote.name), (1, Action.upvote.name), (0, Action.upvote.name), }),
(7, {(2, Action.upvote.name), (1, Action.upvote.name), (0, Action.upvote.name), }),
(8, {(3, Action.downvote.name), (2, Action.upvote.name), (1, Action.upvote.name), (0, Action.upvote.name), }),
(9, {(4, Action.skip.name), (3, Action.downvote.name), (2, Action.upvote.name), (1, Action.upvote.name), (0, Action.upvote.name), }),
(4, {(1, Action.upvote.name), (0, Action.upvote.name), }),
(5, {(2, Action.upvote.name), (1, Action.upvote.name), (0, Action.upvote.name), }),
(6, {(2, Action.downvote.name), (1, Action.upvote.name), 0, Action.upvote.name), }),
(7, {(2, Action.upvote.name), (1, Action.upvote.name), (0, Action.upvote.name), }),
(8, {(3, Action.downvote.name), (2, Action.upvote.name), (1, Action.upvote.name), (0, Action.upvote.name), }),
(9, {(4, Action.skip.name), (3, Action.downvote.name), (2, Action.upvote.name), (1, Action.upvote.name), (0, Action.upvote.name), }), # noqa E501
))
@pytest.mark.asyncio
async def test_query_simplified_user_actions(

0 comments on commit c9aafc8

Please sign in to comment.