diff options
| author | Raymond Hettinger <python@rcn.com> | 2014-08-10 10:41:52 -0700 |
|---|---|---|
| committer | Raymond Hettinger <python@rcn.com> | 2014-08-10 10:41:52 -0700 |
| commit | d4cc49f5f367f488379150588d07c7f77dc917e5 (patch) | |
| tree | 97b4a85c63fe35d488668f2f3d9652231431a572 /Lib/unittest/util.py | |
| parent | 9aebd07ac628842838a281dad04c891c410b0396 (diff) | |
| parent | 7f8878040c398fac32114fb7072cfabf7f7f3fa6 (diff) | |
| download | cpython-d4cc49f5f367f488379150588d07c7f77dc917e5.tar.gz | |
merge
Diffstat (limited to 'Lib/unittest/util.py')
| -rw-r--r-- | Lib/unittest/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/unittest/util.py b/Lib/unittest/util.py index aee498fd0b..45485dcb0d 100644 --- a/Lib/unittest/util.py +++ b/Lib/unittest/util.py @@ -52,7 +52,7 @@ def safe_repr(obj, short=False): return result[:_MAX_LENGTH] + ' [truncated]...' def strclass(cls): - return "%s.%s" % (cls.__module__, cls.__name__) + return "%s.%s" % (cls.__module__, cls.__qualname__) def sorted_list_difference(expected, actual): """Finds elements in only one or the other of two, sorted input lists. |
