diff --git a/lib/tool_shed/test/functional/test_shed_tools.py b/lib/tool_shed/test/functional/test_shed_tools.py index 8d91ce088b73..c54dd825e479 100644 --- a/lib/tool_shed/test/functional/test_shed_tools.py +++ b/lib/tool_shed/test/functional/test_shed_tools.py @@ -27,8 +27,8 @@ def test_tool_search(self): assert tool_search_hit.tool.name == "Compute" # ensure re-index doesn't modify number of hits (regression of an issue pre-Fall 2022) - response = populator.reindex() - response = populator.reindex() + populator.reindex() + populator.reindex() response = populator.tool_search_query("Compute") new_hit_count = len(response.hits)