Update error message for config drive test

- Previous message said the opposite of the actual tested behavior

Change-Id: I0c302a024800bdaee7643143e7d2f15928ac68e2
This commit is contained in:
Levi Blackstone 2015-08-14 09:26:15 -05:00
parent 0bb1d6d4fd
commit b1fecd861b
1 changed files with 2 additions and 2 deletions

View File

@ -142,10 +142,10 @@ class ConfigDriveTest(ComputeFixture):
self.config_drive_config.base_path_to_mount)
self.assertGreaterEqual(
kb_size.size, self.config_drive_config.min_size,
msg='New image is not less than tolerance')
msg='New image less than minimum configured tolerance')
self.assertLessEqual(
kb_size.size, self.config_drive_config.max_size,
msg='New image is not more than tolerance')
msg='New image exceeds maximum configured tolerance')
@tags(type='smoke', net='yes')
def test_create_server_config_drive_user_data(self):