Skip to content

Commit

Permalink
Fix broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
failys committed Aug 7, 2019
1 parent bcc8460 commit 642a117
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cairis/test/test_ProjectAPI.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def test_clear_project(self):
assert isinstance(json_dict, dict)
message = json_dict.get('message', None)
self.assertIsNotNone(message, 'No message in response')
self.assertGreater(message.find('0'), -1, 'Failed to import any data')
self.assertGreater(message.find('imported'), -1, 'Failed to import any data')
self.logger.info('[%s] Successfully created new project and restored the example project\n', method)

def convert_to_obj(self, json_dict):
Expand Down

0 comments on commit 642a117

Please sign in to comment.