Merge pull request #3617 from wbadart/fix-test

test_is_path calls the correct function
This commit is contained in:
Hugo 2019-01-29 00:33:52 +02:00 committed by GitHub
commit a656a0bd60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,7 +30,7 @@ class TestUtil(PillowTestCase):
fp = "filename.ext"
# Act
it_is = _util.isStringType(fp)
it_is = _util.isPath(fp)
# Assert
self.assertTrue(it_is)