Skip to content

Commit

Permalink
Fix unit tests ?
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdbeek committed Oct 16, 2024
1 parent 8d3b2ae commit d8d95fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/unit/app/managers/test_landing.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def setUp(self):
self.landing_manager = LandingRequestManager(
self.trans.sa_session, self.app.security, self.workflow_contents_manager
)
self.trans.app.trs_proxy = TrsProxy(GalaxyAppConfiguration())
self.trans.app.trs_proxy = TrsProxy(GalaxyAppConfiguration(override_tempdir=False))

def test_tool_landing_requests_typical_flow(self):
landing_request: ToolLandingRequest = self.landing_manager.create_tool_landing_request(self._tool_request)
Expand Down
2 changes: 1 addition & 1 deletion test/unit/workflows/test_trs_proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@


def get_trs_proxy():
return TrsProxy(GalaxyAppConfiguration(trs_servers_config_file=None, fetch_url_allowlist_ips=[]))
return TrsProxy(GalaxyAppConfiguration(fetch_url_allowlist_ips=[], override_tempdir=False))


def test_proxy():
Expand Down

0 comments on commit d8d95fa

Please sign in to comment.