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 committed by Valentin Lorentz
parent 390b3ec15f
commit f69c47b092

View File

@ -67,7 +67,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')