diff options
| author | Barry Warsaw | 2015-01-03 00:06:17 -0500 |
|---|---|---|
| committer | Barry Warsaw | 2015-01-03 00:06:17 -0500 |
| commit | de181c1a40965a3a7deedd56a034a946f45b6984 (patch) | |
| tree | f5afb9467d8dde66b6c9693f225bfc01f18fd8aa /src/mailman/config/tests/test_configuration.py | |
| parent | c5e5a12e9a79cbf2cc6bf65ceec7391ce3844ba3 (diff) | |
| download | mailman-de181c1a40965a3a7deedd56a034a946f45b6984.tar.gz mailman-de181c1a40965a3a7deedd56a034a946f45b6984.tar.zst mailman-de181c1a40965a3a7deedd56a034a946f45b6984.zip | |
Diffstat (limited to 'src/mailman/config/tests/test_configuration.py')
| -rw-r--r-- | src/mailman/config/tests/test_configuration.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mailman/config/tests/test_configuration.py b/src/mailman/config/tests/test_configuration.py index b4b2145c0..253b63239 100644 --- a/src/mailman/config/tests/test_configuration.py +++ b/src/mailman/config/tests/test_configuration.py @@ -116,14 +116,14 @@ layout: nonesuch self.assertEqual(cm.exception.args, (1,)) def test_path_expansion_infloop(self): - # A path expansion never completes because it references a - # non-existent substitution variable. + # A path expansion never completes because it references a non-existent + # substitution variable. fd, filename = tempfile.mkstemp() self.addCleanup(os.remove, filename) os.close(fd) with open(filename, 'w') as fp: print("""\ -[paths.dev] +[paths.here] log_dir: $nopath/log_dir """, file=fp) config = Configuration() |
