Commit 5f7c6a8d authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

Fixed #9031 -- Clarified the error message when the label used to run a...

Fixed #9031 -- Clarified the error message when the label used to run a specific test case method doesn't name a valid test case class. Thanks to Thomas Guettler for the suggestion and patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@9879 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 85691576
Loading
Loading
Loading
Loading
+29 −27
Original line number Diff line number Diff line
@@ -97,6 +97,8 @@ def build_test(label):
        except TypeError:
            raise ValueError("Test label '%s' does not refer to a test class" % label)
    else: # label is app.TestClass.test_method
        if not TestClass:
            raise ValueError("Test label '%s' does not refer to a test class" % label)
        return TestClass(parts[2])

# Python 2.3 compatibility: TestSuites were made iterable in 2.4.