From f69c47b092faf83a21045495b664d457631827f4 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 93b6c0cf8..6a67638c0 100644 --- a/plugins/Unix/test.py +++ b/plugins/Unix/test.py @@ -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')