diff options
author | Scott Moser <smoser@ubuntu.com> | 2012-03-08 15:02:55 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2012-03-08 15:02:55 -0500 |
commit | db695dcd2d31770b33f5b7cb4ff0811209d175a3 (patch) | |
tree | 382bc3ba379bd015c8a51fdf1769a37fa920c4e1 /tests/unittests/test_util.py | |
parent | 54b593a166c4ac4043615dddc94a941ebc712300 (diff) | |
parent | 62623b8c5ac10b2bff9f6205f696b4277bce9451 (diff) | |
download | vyos-cloud-init-db695dcd2d31770b33f5b7cb4ff0811209d175a3.tar.gz vyos-cloud-init-db695dcd2d31770b33f5b7cb4ff0811209d175a3.zip |
Add DataSourceMaaS, a Data Source for Ubuntu Machine as a Service
LP: #942061
Diffstat (limited to 'tests/unittests/test_util.py')
-rw-r--r-- | tests/unittests/test_util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unittests/test_util.py b/tests/unittests/test_util.py index d8da8bc9..ca96bc60 100644 --- a/tests/unittests/test_util.py +++ b/tests/unittests/test_util.py @@ -28,7 +28,7 @@ class TestMergeDict(TestCase): def test_merge_does_not_override(self): """Test that candidate doesn't override source.""" source = {"key1": "value1", "key2": "value2"} - candidate = {"key2": "value2", "key2": "NEW VALUE"} + candidate = {"key1": "value2", "key2": "NEW VALUE"} result = mergedict(source, candidate) self.assertEqual(source, result) |