summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormakkalot <makkalot@gmail.com>2008-06-16 21:36:55 +0300
committermakkalot <makkalot@gmail.com>2008-06-16 21:36:55 +0300
commitf58d369ffd61587c8af3c65d30812e4209bfe3df (patch)
treed6ca6ba05bb17cf7b99d4bdf93a2fe75e83ec11b
parent05341feebfa9d1f8dbf531fb1c1249edf910d960 (diff)
downloadfunc-f58d369ffd61587c8af3c65d30812e4209bfe3df.tar.gz
func-f58d369ffd61587c8af3c65d30812e4209bfe3df.tar.xz
func-f58d369ffd61587c8af3c65d30812e4209bfe3df.zip
change test for localhost
-rw-r--r--test/unittest/test_client.py4
1 files changed, 2 insertions, 2 deletions
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):