test_is_path calls the correct function

Before, the test called the isStringType utility, which has its own,
separate test.
This commit is contained in:
Will Badart 2019-01-28 12:23:19 -05:00
parent 071dc9409f
commit 37b182793e
No known key found for this signature in database
GPG Key ID: 75CC5647CFEAA75E

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)