From f58d369ffd61587c8af3c65d30812e4209bfe3df Mon Sep 17 00:00:00 2001 From: makkalot Date: Mon, 16 Jun 2008 21:36:55 +0300 Subject: change test for localhost --- test/unittest/test_client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/unittest') diff --git a/test/unittest/test_client.py b/test/unittest/test_client.py index 12a47bc..f3b441d 100644 --- a/test/unittest/test_client.py +++ b/test/unittest/test_client.py @@ -14,8 +14,7 @@ import socket class BaseTest: # assume we are talking to localhost # th = socket.gethostname() - m = "acervirtual.evlan.com" - th = socket.getfqdn(m) + th = socket.getfqdn() nforks=1 async=False @@ -50,6 +49,7 @@ class BaseTest: def test_module_get_method_args(self): mod = getattr(self.overlord,self.module) arg_result=mod.get_method_args() + print arg_result self.assert_on_fault(arg_result) def test_module_inventory(self): -- cgit