Skip to content

Commit

Permalink
Fixed flake8 warning
Browse files Browse the repository at this point in the history
  • Loading branch information
hkage committed Dec 4, 2020
1 parent adbe037 commit 0ff4684
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def test(self, tables, expected_sql):
truncate_tables(connection, tables)
if tables:
connection.cursor.assert_called_once()
assert mock_cursor.execute.call_args_list == [call(expected_sql),]
assert mock_cursor.execute.call_args_list == [call(expected_sql)]
mock_cursor.close.assert_called_once()
else:
connection.cursor.assert_not_called()
Expand Down

0 comments on commit 0ff4684

Please sign in to comment.