diff options
Diffstat (limited to 'tests/utils_tests')
| -rw-r--r-- | tests/utils_tests/test_safestring.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/utils_tests/test_safestring.py b/tests/utils_tests/test_safestring.py index b880d19f27..4068896020 100644 --- a/tests/utils_tests/test_safestring.py +++ b/tests/utils_tests/test_safestring.py @@ -26,7 +26,7 @@ class SafeStringTest(SimpleTestCase): def test_mark_safe_str(self): """ - Calling str() on a SafeText instance doesn't lose the safe status. + Calling str() on a SafeString instance doesn't lose the safe status. """ s = mark_safe('a&b') self.assertIsInstance(str(s), type(s)) |
