diff options
author | Anas Nashif <nashif@intel.com> | 2007-05-06 20:12:00 +0000 |
---|---|---|
committer | Anas Nashif <nashif@intel.com> | 2007-05-06 20:12:00 +0000 |
commit | d351439abaaafa7451915e86557a22c20c5a89c7 (patch) | |
tree | d7d5388db94f552f52b5f0c071ac846ee98d96cb | |
parent | 23a0079658f810c7d18b7a05fbf210d74cee2b13 (diff) | |
download | wsmancli-d351439abaaafa7451915e86557a22c20c5a89c7.tar.gz wsmancli-d351439abaaafa7451915e86557a22c20c5a89c7.tar.xz wsmancli-d351439abaaafa7451915e86557a22c20c5a89c7.zip |
fix testsuite
-rw-r--r-- | tests/cunit/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cunit/common.c b/tests/cunit/common.c index 161561a..aa8d268 100644 --- a/tests/cunit/common.c +++ b/tests/cunit/common.c @@ -21,7 +21,6 @@ WsManClient *cl; int init_test(void) { - wsman_client_transport_init(NULL); ServerData sd[] = { {"localhost", 8889, "/wsman", "http", "wsman", "secret"} @@ -34,6 +33,7 @@ int init_test(void) { sd[0].scheme, sd[0].username, sd[0].password); + wsman_client_transport_init(cl, NULL); return 0; } |