From cfae36c5c82d7ec95b67f7c8f0a1db76fea1e8f1 Mon Sep 17 00:00:00 2001 From: Lamar Pavel Date: Wed, 27 May 2015 14:05:29 +0200 Subject: [PATCH] Adjust name and doc of modified test --- tests/config/test_configtypes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/config/test_configtypes.py b/tests/config/test_configtypes.py index c515c6cef..d8af6995d 100644 --- a/tests/config/test_configtypes.py +++ b/tests/config/test_configtypes.py @@ -1373,8 +1373,8 @@ class TestFile: os_path.isabs.return_value = True self.t.validate('foobar') - def test_validate_exists_not_abs(self, os_path): - """Test validate with a file which does exist but is not absolute.""" + def test_validate_exists_rel(self, os_path): + """Test validate with a relative path to an existing file.""" os_path.expanduser.side_effect = lambda x: x os_path.isfile.return_value = True os_path.isabs.return_value = False