diff options
author | Sankar Tanguturi <stanguturi@stanguturi-rhel> | 2016-03-17 14:30:46 -0700 |
---|---|---|
committer | Sankar Tanguturi <stanguturi@stanguturi-rhel> | 2016-03-17 14:30:46 -0700 |
commit | f1f0619010ec59b0ad2641e6d2faf0ae2ce8a09f (patch) | |
tree | 4719aaa98096cb1b062b29768888eb1fa3785fc8 /tests | |
parent | 13a32d7599a939370ee0bc0e7257da2c59b4bd61 (diff) | |
parent | 56402e91e95960f54a39eb18cbda391f00f95b6e (diff) | |
download | vyos-cloud-init-f1f0619010ec59b0ad2641e6d2faf0ae2ce8a09f.tar.gz vyos-cloud-init-f1f0619010ec59b0ad2641e6d2faf0ae2ce8a09f.zip |
- Merged with trunk.
Diffstat (limited to 'tests')
-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 0a986fec..37a984ac 100644 --- a/tests/unittests/test_util.py +++ b/tests/unittests/test_util.py @@ -389,7 +389,7 @@ class TestReadDMIData(helpers.FilesystemMockingTestCase): # uninitialized dmi values show as \xff, return those as . my_len = 32 dmi_value = b'\xff' * my_len + b'\n' - expected = '.' * my_len + expected = "" dmi_key = 'system-product-name' sysfs_key = 'product_name' self._create_sysfs_file(sysfs_key, dmi_value) |