commit/galaxy-central: greg: Fix in the tool shed install and test framework for a recently relocated function.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/febeffc4787e/ Changeset: febeffc4787e User: greg Date: 2014-04-10 13:20:27 Summary: Fix in the tool shed install and test framework for a recently relocated function. Affected #: 1 file diff -r b887ef428f8f99685878df3cfe61531e3b4a26a2 -r febeffc4787e625f3687c7d24298d5b2d3fa6241 test/install_and_test_tool_shed_repositories/base/util.py --- a/test/install_and_test_tool_shed_repositories/base/util.py +++ b/test/install_and_test_tool_shed_repositories/base/util.py @@ -40,6 +40,7 @@ import galaxy.webapps.tool_shed.model.mapping from nose.plugins import Plugin +from tool_shed.util import common_util from tool_shed.util import tool_dependency_util from tool_shed.util.xml_util import parse_xml @@ -1093,7 +1094,7 @@ params[ 'tool_test_results' ] = tool_test_results_dicts # Set the time_last_tested entry so that the repository_metadata.time_last_tested will be set in the tool shed. params[ 'time_last_tested' ] = 'This entry will result in this value being set via the Tool Shed API.' - url = '%s' % ( suc.url_join( galaxy_tool_shed_url,'api', 'repository_revisions', str( metadata_revision_id ) ) ) + url = '%s' % ( common_util.url_join( galaxy_tool_shed_url,'api', 'repository_revisions', str( metadata_revision_id ) ) ) print 'url: ', url print 'params: ', params try: Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org