Skip to content

Commit

Permalink
Tests: Fix test_ix_attach_to after api changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dileep-kishore committed Jan 29, 2021
1 parent c4ca2f0 commit fecb81a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/pipelines/test_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ def test_ix_attach_to(self, pipeline_settings, example_pipelines, tmpdir):
json_params = setup_internal(pipeline_settings, example_pipelines)
to_remove = []
for io_elem in json_params.input:
if io_elem.datatype in {"interaction_table", "pvalue_table"}:
if io_elem.datatype in {"interaction_table"}:
to_remove.append(io_elem)
for remove in to_remove:
json_params.input.remove(remove)
Expand Down

0 comments on commit fecb81a

Please sign in to comment.