From b2f8d507dec9fef41165982b235e9e1269322e7a Mon Sep 17 00:00:00 2001 From: Chris Glass Date: Thu, 26 Jun 2014 13:24:14 +0200 Subject: [PATCH] Fixed docstrings --- lib/tests/test_simple_config.py | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/tests/test_simple_config.py b/lib/tests/test_simple_config.py index e7c13a7..a800629 100644 --- a/lib/tests/test_simple_config.py +++ b/lib/tests/test_simple_config.py @@ -136,8 +136,9 @@ class Test_SimpleConfig(unittest.TestCase): config.set_key("electrum_path", another_path) self.assertEqual(another_path, config.get("electrum_path")) - def test_user_config_is_not_written_with_system_config(self): - """The user config does not contain command-line options when saved.""" + def test_user_config_is_not_written_with_read_only_config(self): + """The user config does not contain command-line options or system + options when saved.""" fake_read_system = lambda : {"something": "b"} fake_read_user = lambda _: {"something": "a"} read_user_dir = lambda : self.user_dir -- 1.7.1