summaryrefslogtreecommitdiffstats
path: root/cnucnu/tests/config_test.py
diff options
context:
space:
mode:
authorTill Maas <opensource@till.name>2013-03-03 17:32:48 +0100
committerTill Maas <opensource@till.name>2013-03-03 17:34:56 +0100
commitff3386b4ae87faacbe90ea7103a1d744eaee9589 (patch)
tree0a78e34a43da8f776493afe888d18e26a2b9f0ed /cnucnu/tests/config_test.py
parent15d0ca0f6b2b73e612a336caf86062e385099f47 (diff)
downloadcnucnu-ff3386b4ae87faacbe90ea7103a1d744eaee9589.tar.gz
cnucnu-ff3386b4ae87faacbe90ea7103a1d744eaee9589.tar.xz
cnucnu-ff3386b4ae87faacbe90ea7103a1d744eaee9589.zip
Remove trailing whitespace
Diffstat (limited to 'cnucnu/tests/config_test.py')
-rwxr-xr-xcnucnu/tests/config_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cnucnu/tests/config_test.py b/cnucnu/tests/config_test.py
index 4fb1985..f2db60e 100755
--- a/cnucnu/tests/config_test.py
+++ b/cnucnu/tests/config_test.py
@@ -40,7 +40,7 @@ class ConfigTest(unittest.TestCase):
c.update(new)
self.assertEqual(c.config, expected)
-
+
def testComplexUpdate(self):
old = {0: 0, "d": {0: 0, 1: 1, 2: 2}, 2: {}}
new = {1: 1, "d": {1: {0: 0}, 2: None}}
@@ -50,7 +50,7 @@ class ConfigTest(unittest.TestCase):
c.update(new)
self.assertEqual(c.config, expected)
-
+
if __name__ == "__main__":
suite = unittest.TestLoader().loadTestsFromTestCase(ConfigTest)
unittest.TextTestRunner(verbosity=2).run(suite)