diff options
author | Scott Moser <smoser@ubuntu.com> | 2016-05-27 15:16:33 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2016-05-27 15:16:33 -0400 |
commit | f5be39ff385b5c1e15f536e3f05415c4b95ff1f3 (patch) | |
tree | c552276a88e0a3f014d8c54142a4cfe33e9e8626 /tests/unittests/test_datasource | |
parent | c0788ee76bf62fa0be570932273ff47212bc9d6c (diff) | |
download | vyos-cloud-init-f5be39ff385b5c1e15f536e3f05415c4b95ff1f3.tar.gz vyos-cloud-init-f5be39ff385b5c1e15f536e3f05415c4b95ff1f3.zip |
assertEquals
Diffstat (limited to 'tests/unittests/test_datasource')
-rw-r--r-- | tests/unittests/test_datasource/test_smartos.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unittests/test_datasource/test_smartos.py b/tests/unittests/test_datasource/test_smartos.py index 10e3113e..96d7346f 100644 --- a/tests/unittests/test_datasource/test_smartos.py +++ b/tests/unittests/test_datasource/test_smartos.py @@ -536,4 +536,4 @@ class TestNetworkConversion(TestCase): 'address': '192.168.128.93/22'}], 'mtu': 8500, 'mac_address': '90:b8:d0:a5:ff:cd'}]} found = DataSourceSmartOS.convert_smartos_network_data(SDC_NICS) - self.assertEqual(expected, found) + self.assertEquals(expected, found) |