From 5dc7d6f5902ddaee5223d041d5c10060f0c72430 Mon Sep 17 00:00:00 2001 From: Unit 193 Date: Sun, 25 Oct 2020 17:59:22 -0400 Subject: New upstream version 1.15.2. --- test/test_util.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test/test_util.py') diff --git a/test/test_util.py b/test/test_util.py index 1515814..08ecd64 100644 --- a/test/test_util.py +++ b/test/test_util.py @@ -265,6 +265,7 @@ class TestFormatter(unittest.TestCase): "d": {"a": "foo", "b": 0, "c": None}, "l": ["a", "b", "c"], "n": None, + "s": " \n\r\tSPACE ", "u": "%27%3C%20/%20%3E%27", "name": "Name", "title1": "Title", @@ -278,6 +279,7 @@ class TestFormatter(unittest.TestCase): self._run_test("{a!u}", "HELLO WORLD") self._run_test("{a!c}", "Hello world") self._run_test("{a!C}", "Hello World") + self._run_test("{s!t}", "SPACE") self._run_test("{a!U}", self.kwdict["a"]) self._run_test("{u!U}", "'< / >'") self._run_test("{a!s}", self.kwdict["a"]) -- cgit v1.2.3