summaryrefslogtreecommitdiffstats
path: root/tests/cunit/common.c
diff options
context:
space:
mode:
authorAnas Nashif <nashif@intel.com>2007-05-16 23:15:19 +0000
committerAnas Nashif <nashif@intel.com>2007-05-16 23:15:19 +0000
commit6d02c9a6c69c7aeafdb0c55e5d70ffb5f0b06230 (patch)
tree1480431c3f233ae4bf2af5a4bce44c7ff9158f9f /tests/cunit/common.c
parent30a0e40701704a4388bea110acd0836df3716036 (diff)
downloadwsmancli-6d02c9a6c69c7aeafdb0c55e5d70ffb5f0b06230.tar.gz
wsmancli-6d02c9a6c69c7aeafdb0c55e5d70ffb5f0b06230.tar.xz
wsmancli-6d02c9a6c69c7aeafdb0c55e5d70ffb5f0b06230.zip
api changes
Diffstat (limited to 'tests/cunit/common.c')
-rw-r--r--tests/cunit/common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/cunit/common.c b/tests/cunit/common.c
index 93b210d..d41483c 100644
--- a/tests/cunit/common.c
+++ b/tests/cunit/common.c
@@ -26,7 +26,7 @@ int init_test(void) {
{"localhost", 8889, "/wsman", "http", "wsman", "secret"}
};
- cl = wsman_create_client(
+ cl = wsman_client_create(
sd[0].server,
sd[0].port,
sd[0].path,
@@ -39,7 +39,7 @@ int init_test(void) {
int clean_test(void) {
- wsman_release_client(cl);
+ wsman_client_release(cl);
wsman_client_transport_fini(cl);
return 0;
}