diff options
| author | Tim Graham <timograham@gmail.com> | 2019-02-05 09:38:29 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2019-02-06 14:12:06 -0500 |
| commit | 77d25dbd0f20d6a907c805ffae8aaadd87edbacf (patch) | |
| tree | a082b53101084fb57bbd8d0fb69a3663e4e70057 /tests/utils_tests/test_safestring.py | |
| parent | d55e88292723764a16f0689c73bc7e739dfa6047 (diff) | |
Refs #27753 -- Favored SafeString over SafeText.
Diffstat (limited to 'tests/utils_tests/test_safestring.py')
| -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)) |
