Apply suggestions from code review

Rename `fp` to `test_path` in the new `test_is_path` test.

^ Wow, what a sentence...

Co-Authored-By: wbadart <wbadart@live.com>
This commit is contained in:
Hugo 2019-02-04 10:36:34 -05:00 committed by GitHub
parent c328ecace3
commit aed56efa50
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,10 +39,10 @@ class TestUtil(PillowTestCase):
def test_path_obj_is_path(self):
# Arrange
from pathlib import Path
fp = Path('filename.ext')
test_path = Path('filename.ext')
# Act
it_is = _util.isPath(fp)
it_is = _util.isPath(test_path)
# Assert
self.assertTrue(it_is)