commit/galaxy-central: Dave Bouvier: Fix the update manager functional test.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/0e1d539dcfcb/ Changeset: 0e1d539dcfcb User: Dave Bouvier Date: 2013-11-25 19:50:32 Summary: Fix the update manager functional test. Affected #: 1 file diff -r d37d6e711d671763d725ffb4931f0acc379964dc -r 0e1d539dcfcb3246f144258514a43e07a514b52e test/tool_shed/functional/test_1410_update_manager.py --- a/test/tool_shed/functional/test_1410_update_manager.py +++ b/test/tool_shed/functional/test_1410_update_manager.py @@ -123,6 +123,12 @@ self.galaxy_login( email=common.admin_email, username=common.admin_username ) repository = test_db_util.get_repository_by_name_and_owner( repository_name, common.test_user_1_name ) self.update_tool_shed_status() - strings_displayed = [ '"%s"><img src="/static/images/icon_warning_sml.gif"' % self.security.encode_id( repository.id ) ] + ok_icon = '/static/june_2007_style/blue/ok_small.png' + ok_title = 'This is the latest installable revision of this repository' + updates_icon = '/static/images/icon_warning_sml.gif' + repository_id = self.security.encode_id( repository.id ) + html = '<label id="%s" for="%s"><img src="%s" class="icon-button" title="%s"/><img src="%s' % \ + ( repository_id, repository_id, ok_icon, ok_title, updates_icon ) + strings_displayed = [ html ] self.display_galaxy_browse_repositories_page( strings_displayed=strings_displayed ) 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