From e178d045224c75d35ce00337efb2d864b3022a99 Mon Sep 17 00:00:00 2001 From: Daniel Folkinshteyn Date: Thu, 8 Jul 2010 23:29:01 -0400 Subject: [PATCH] Unix: fix test for the ping command, call unix ping instead of the default misc ping. --- plugins/Unix/test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/Unix/test.py b/plugins/Unix/test.py index b51cd8397..8f67ce351 100644 --- a/plugins/Unix/test.py +++ b/plugins/Unix/test.py @@ -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')