From e3545f828dabe165dc08b2f1670e5f1f19919d0d Mon Sep 17 00:00:00 2001 From: Sergey Lukjanov Date: Sun, 2 Jun 2013 20:41:20 +0400 Subject: Enable hacking H402 test H402 one line docstring needs punctuation Change-Id: Ie848453cace318d8310cdf0234c512f4c1121119 --- tests/unit/test_lockutils.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/unit/test_lockutils.py') diff --git a/tests/unit/test_lockutils.py b/tests/unit/test_lockutils.py index c37b030..84afa2d 100644 --- a/tests/unit/test_lockutils.py +++ b/tests/unit/test_lockutils.py @@ -75,7 +75,7 @@ class LockTestCase(utils.BaseTestCase): "got mangled") def test_synchronized_internally(self): - """We can lock across multiple green threads""" + """We can lock across multiple green threads.""" saved_sem_num = len(lockutils._semaphores) seen_threads = list() @@ -105,7 +105,7 @@ class LockTestCase(utils.BaseTestCase): "Semaphore leak detected") def test_nested_external_works(self): - """We can nest external syncs""" + """We can nest external syncs.""" tempdir = tempfile.mkdtemp() try: self.config(lock_path=tempdir) @@ -126,7 +126,7 @@ class LockTestCase(utils.BaseTestCase): shutil.rmtree(tempdir) def _do_test_synchronized_externally(self): - """We can lock across multiple processes""" + """We can lock across multiple processes.""" @lockutils.synchronized('external', 'test-', external=True) def lock_files(handles_dir): -- cgit