From 98c3227f91d9dc31d213eb2461f86535af050058 Mon Sep 17 00:00:00 2001 From: IWAMOTO Toshihiro Date: Tue, 16 Jun 2015 18:14:53 +0900 Subject: [PATCH] Fix LockFixture docstring Fixtures.useFixture takes a class instance, not a class type. Change-Id: I48fff3f1a25b28e9ba15f79cbe18ea4c9582bd5c --- oslo_concurrency/fixture/lockutils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/oslo_concurrency/fixture/lockutils.py b/oslo_concurrency/fixture/lockutils.py index bdf7883..8c4d1fc 100644 --- a/oslo_concurrency/fixture/lockutils.py +++ b/oslo_concurrency/fixture/lockutils.py @@ -28,7 +28,7 @@ class LockFixture(fixtures.Fixture): be the first line in a test method, like so:: def test_method(self): - self.useFixture(LockFixture) + self.useFixture(LockFixture('lock_name')) ... or the first line in setUp if all the test methods in the class are @@ -36,7 +36,7 @@ class LockFixture(fixtures.Fixture): class TestCase(testtools.testcase): def setUp(self): - self.useFixture(LockFixture) + self.useFixture(LockFixture('lock_name')) super(TestCase, self).setUp() ...