Skip to content

Commit

Permalink
Make it an f-string
Browse files Browse the repository at this point in the history
Co-authored-by: Nicola Soranzo <[email protected]>
  • Loading branch information
mvdbeek and nsoranzo authored May 29, 2024
1 parent 5f1ec2b commit 74e8d32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy_test/driver/uses_shed.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def _app(self) -> UniverseApplication: ...
@classmethod
def configure_shed(cls, config):
if not is_site_up(TOOLSHED_URL):
raise SkipTest("Test depends on [{TOOLSHED_URL}] being up and it appears to be down.")
raise SkipTest(f"Test depends on [{TOOLSHED_URL}] being up and it appears to be down.")
cls.shed_tools_dir = tempfile.mkdtemp()
cls.shed_tool_data_dir = tempfile.mkdtemp()
cls._test_driver.temp_directories.extend([cls.shed_tool_data_dir, cls.shed_tools_dir])
Expand Down

0 comments on commit 74e8d32

Please sign in to comment.