Unix: fix test for the ping command, call unix ping instead of the default misc ping.

This commit is contained in:
Daniel Folkinshteyn 2010-07-08 23:29:01 -04:00
parent a8e91a58a0
commit e178d04522

View File

@ -66,7 +66,8 @@ if os.name == 'posix':
if utils.findBinaryInPath('ping') is not None:
def testPing(self):
self.assertNotError('ping')
self.assertNotError('unix ping localhost')
self.assertError('unix ping')