test_astrcmp: Rephrase the skip message to not refer to a not existing file

This commit is contained in:
Wieland Hoffmann
2017-04-11 19:00:44 +02:00
parent fb89d5e93c
commit 896b62a3b5

View File

@@ -26,7 +26,7 @@ class AstrcmpBase(object):
class AstrcmpCTest(AstrcmpBase, unittest.TestCase):
func = astrcmp_c
@unittest.skipIf(astrcmp_c is None, "compiled astrcmp.c does not exist")
@unittest.skipIf(astrcmp_c is None, "The _astrcmp C extension module has not been compiled")
def test_astrcmp(self):
super()