Image meta min_disk should be int in fake_request_spec

This might be blowing up some concurrently running tests
by raising a TypeError comparing an int to a str in py35
jobs. It's hard to reproduce, but we know min_disk should
be an int so let's just change it.

Change-Id: I153544d2aeefbd2d12543481e3bda75ed0316798
Closes-Bug: #1680667
This commit is contained in:
Matt Riedemann 2017-04-06 23:12:46 -04:00
parent e18e23e100
commit 6ac1d039da
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ IMAGE_META = objects.ImageMeta.from_dict(
'container_format': 'bare',
'min_ram': 0,
'updated_at': '2014-12-12T11:16:36.000000',
'min_disk': '0',
'min_disk': 0,
'owner': '2d8b9502858c406ebee60f0849486222',
'protected': 'yes',
'properties': {