Skip to content

Commit

Permalink
test: Fix broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffreyMFarley committed Jun 22, 2018
1 parent b88442a commit 17f211a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion complaint_search/tests/test_es_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ def test_search_with_field_all__valid(self, mock_scroll, mock_count, mock_search
def test_search_with_format__invalid(self, mock_rget, mock_search):
mock_search.return_value = 'OK'
res = search(format="pdf")
self.assertIsNone(res)
self.assertEqual(res, {})
mock_search.assert_not_called()
mock_rget.assert_not_called()

Expand Down

0 comments on commit 17f211a

Please sign in to comment.