Skip to content

Commit

Permalink
Fix 3 failing functional tests in test/tool_shed/ .
Browse files Browse the repository at this point in the history
  • Loading branch information
nsoranzo committed Aug 26, 2015
1 parent 6ca86b5 commit fc2861c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/tool_shed/base/twilltestcase.py
Expand Up @@ -1219,8 +1219,9 @@ def uninstall_repository( self, installed_repository, strings_displayed=[], stri
self.check_for_strings( strings_displayed, strings_not_displayed=[] )

def update_installed_repository( self, installed_repository, strings_displayed=[], strings_not_displayed=[] ):
url = '/admin_toolshed/check_for_updates?id=%s' % self.security.encode_id( installed_repository.id )
self.visit_galaxy_url( url )
url = '/repository/check_for_updates?name=%s&owner=%s&changeset_revision=%s&galaxy_url=%s' % ( installed_repository.name,
installed_repository.owner, installed_repository.installed_changeset_revision, self.galaxy_url )
self.visit_url( url )
self.check_for_strings( strings_displayed, strings_not_displayed )

def update_tool_shed_status( self ):
Expand Down

0 comments on commit fc2861c

Please sign in to comment.