From 1bc08c9546528c987da35cccd3f2128471ecf5ba Mon Sep 17 00:00:00 2001 From: James Taylor Date: Wed, 4 Nov 2009 11:35:50 -0500 Subject: [PATCH] Fix tool test specification by id --- test/functional/test_toolbox.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/test_toolbox.py b/test/functional/test_toolbox.py index 2c83efecbfa..1eeea3cf192 100644 --- a/test/functional/test_toolbox.py +++ b/test/functional/test_toolbox.py @@ -128,4 +128,4 @@ def build_tests(): for j, testdef in enumerate( tool.tests ): name = "%s ( %s ) > %s" % ( tool.name, tool.id, testdef.name ) testcase = get_case( testdef, name ) - G[ 'testcase_%d_%d' % ( i, j ) ] = testcase + G[ testcase.__name__ ] = testcase