Skip to content

Commit

Permalink
Slight test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
carlvitzthum committed Oct 15, 2019
1 parent c0f057b commit e036ae2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/snovault/tests/test_indexing.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ def test_indexing_simple(app, testapp, indexer_testapp):
res = indexer_testapp.post_json('/index', {'record': True})
assert res.json['indexing_count'] == 1
assert res.json['indexing_status'] == 'finished'
assert res.json['errors'] is None
assert res.json['errors'] == []
res = testapp.post_json(TEST_COLL, {'required': ''})
uuid = res.json['@graph'][0]['uuid']
res = indexer_testapp.post_json('/index', {'record': True})
Expand Down

0 comments on commit e036ae2

Please sign in to comment.