commit/galaxy-central: dan: Fix for expand grouping to allow toolbox tests to use the default parameter value.
1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/07b3a58627e6/ changeset: r5535:07b3a58627e6 user: dan date: 2011-05-11 01:59:46 summary: Fix for expand grouping to allow toolbox tests to use the default parameter value. affected #: 1 file (150 bytes) --- a/test/functional/test_toolbox.py Tue May 10 10:50:26 2011 -0400 +++ b/test/functional/test_toolbox.py Tue May 10 19:59:46 2011 -0400 @@ -119,6 +119,8 @@ if prefix: new_prefix = "%s|%s" % ( prefix, new_prefix ) expanded_inputs.update( self.__expand_grouping( { new_prefix : r_value }, declared_inputs, prefix = new_prefix ) ) + elif value.name not in declared_inputs: + print "%s not declared in tool test, will not change default value." % value.name elif isinstance(declared_inputs[value.name], str): if prefix: expanded_inputs["%s|%s" % ( prefix, value.name ) ] = declared_inputs[value.name].split(",") 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)
-
Bitbucket