summaryrefslogtreecommitdiff
path: root/src/mailman/rest/tests/test_listconf.py
diff options
context:
space:
mode:
authorAurélien Bompard2016-08-31 18:31:52 +0200
committerAurélien Bompard2016-08-31 18:31:52 +0200
commitc23519b5262fd264ed0f9e5bc23b901ed7eee632 (patch)
tree9bd4d31f55d36754adb3d78d72a48bc513f8846d /src/mailman/rest/tests/test_listconf.py
parent6a83017b03c679ed1f0f3b7cb0e0e8f50116a179 (diff)
downloadmailman-c23519b5262fd264ed0f9e5bc23b901ed7eee632.tar.gz
mailman-c23519b5262fd264ed0f9e5bc23b901ed7eee632.tar.zst
mailman-c23519b5262fd264ed0f9e5bc23b901ed7eee632.zip
Diffstat (limited to 'src/mailman/rest/tests/test_listconf.py')
-rw-r--r--src/mailman/rest/tests/test_listconf.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mailman/rest/tests/test_listconf.py b/src/mailman/rest/tests/test_listconf.py
index 78e94b95e..3260d6afb 100644
--- a/src/mailman/rest/tests/test_listconf.py
+++ b/src/mailman/rest/tests/test_listconf.py
@@ -455,9 +455,9 @@ class TestConfiguration(unittest.TestCase):
with transaction():
resource, response = call_api(
'http://localhost:9001/3.0/lists/ant.example.com/config',
- dict(info='testvalue'),
+ dict(info='multiline\ntest\nvalue'),
'PATCH')
- self.assertEqual(self._mlist.info, 'testvalue')
+ self.assertEqual(self._mlist.info, 'multiline\ntest\nvalue')
# Now empty it
with transaction():
resource, response = call_api(