Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sorgerlab/indra
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1e7d05e3aa79d3e9719ac4ad4cb35ddc2a070046
Choose a base ref
..
head repository: sorgerlab/indra
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c71e975790f34f60a627213e873411f2b5ac7c7c
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 indra/tests/test_rest_api.py
2 changes: 1 addition & 1 deletion indra/tests/test_rest_api.py
Original file line number Diff line number Diff line change
@@ -853,7 +853,7 @@ def test_reach_process_json():

@pytest.mark.nogha
def test_reach_process_pmc():
res = _call_api('post', 'reach/process_pmc', json={'pmcid': 'PMC4338247'})
res = _call_api('post', 'reach/process_pmc', json={'pmc_id': 'PMC4338247'})
res_json = json.loads(res.get_data())
assert 'statements' in res_json.keys(), res_json
stmts = stmts_from_json(res_json['statements'])