From 80b99195eb4e9cf0c792610b244c69a38cc63083 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Fri, 19 Mar 2021 14:54:40 +0000 Subject: [PATCH] Differentiate test docstrings. --- tests/journal_lock.py/test_journal_lock.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/journal_lock.py/test_journal_lock.py b/tests/journal_lock.py/test_journal_lock.py index 521e2618..d24bd98e 100644 --- a/tests/journal_lock.py/test_journal_lock.py +++ b/tests/journal_lock.py/test_journal_lock.py @@ -75,7 +75,7 @@ class TestJournalLock: assert jlock.journal_dir_lockfile_name is None def test_path_from_journaldir_with_none(self): - """Test JournalLock.set_path_from_journaldir().""" + """Test JournalLock.set_path_from_journaldir() with None.""" jlock = JournalLock() # Check that 'None' is handled correctly. @@ -84,7 +84,7 @@ class TestJournalLock: assert jlock.journal_dir_path is None def test_path_from_journaldir_with_tmpdir(self, mock_journaldir: py_path_local_LocalPath): - """Test JournalLock.set_path_from_journaldir().""" + """Test JournalLock.set_path_from_journaldir() with tmpdir.""" tmpdir = mock_journaldir jlock = JournalLock()