diff options
author | Scott Moser <smoser@ubuntu.com> | 2015-07-22 13:22:36 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2015-07-22 13:22:36 -0400 |
commit | 402bc1fd49b5a0f442ed1dd08ac0a913ee2e734e (patch) | |
tree | 4da1e4f6be19ef63c446de8fe7bfdd13e75d352c /tests/unittests/test_datasource | |
parent | 7ac13a1ef376a7b461673b90dfcd2c7c8612227a (diff) | |
parent | b5230bc3e9d65692093cae9d2f4ca628435a382b (diff) | |
download | vyos-cloud-init-402bc1fd49b5a0f442ed1dd08ac0a913ee2e734e.tar.gz vyos-cloud-init-402bc1fd49b5a0f442ed1dd08ac0a913ee2e734e.zip |
merge from trunk
Diffstat (limited to 'tests/unittests/test_datasource')
-rw-r--r-- | tests/unittests/test_datasource/test_azure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unittests/test_datasource/test_azure.py b/tests/unittests/test_datasource/test_azure.py index 33b971f6..d632bcb9 100644 --- a/tests/unittests/test_datasource/test_azure.py +++ b/tests/unittests/test_datasource/test_azure.py @@ -174,7 +174,7 @@ class TestAzureDataSource(TestCase): def xml_notequals(self, oxml, nxml): try: self.xml_equals(oxml, nxml) - except AssertionError as e: + except AssertionError: return raise AssertionError("XML is the same") |