From e76b82c91b37a821a65e89260c2e4f8e87ea9e5d Mon Sep 17 00:00:00 2001 From: Samuel Merritt Date: Sun, 14 Oct 2012 08:02:09 -0700 Subject: [PATCH] Fix version requirement for mock library. One of the tests uses mock.call, which is only available in version 0.8.0 and up. Fixes bug 1066274. Change-Id: I77e4de0908f93326992fc4d4af4a7e54e60b5585 --- tools/test-requires | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/test-requires b/tools/test-requires index 647e28eb39..7071c3b5d3 100644 --- a/tools/test-requires +++ b/tools/test-requires @@ -5,4 +5,4 @@ openstack.nose_plugin nosehtmloutput pep8==0.6.1 sphinx>=1.1.2 -mock>=0.7.0 +mock>=0.8.0