Use actual fake timestamp in API templates

The 2011-01-01T01:02:03Z is seen throughout the images API sample
tests because it is hard-coded in the fake image service. In some
of the API templates, we include the timestamp rather than matching
against a regexp but in many we don't. Let's consistently match
against the actual timestamp we know to expect.

Full context here:

  http://lists.openstack.org/pipermail/openstack-dev/2014-April/033971.html

Change-Id: I727c0aabac0e32b435068c37d535daa8c983364c
This commit is contained in:
Mark McLoughlin
2014-04-29 12:28:24 +01:00
parent 3409c0e26d
commit 6d88be2049
5 changed files with 25 additions and 25 deletions

View File

@@ -29,6 +29,6 @@
"OS-EXT-IMG-SIZE:size": %(int)s,
"progress": 100,
"status": "ACTIVE",
"updated": "%(timestamp)s"
"updated": "2011-01-01T01:02:03Z"
}
}