diff options
Diffstat (limited to 'tests/cunit/common.c')
-rw-r--r-- | tests/cunit/common.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/cunit/common.c b/tests/cunit/common.c index d41483c..3735026 100644 --- a/tests/cunit/common.c +++ b/tests/cunit/common.c @@ -26,21 +26,21 @@ int init_test(void) { {"localhost", 8889, "/wsman", "http", "wsman", "secret"} }; - cl = wsman_client_create( + cl = wsmc_create( sd[0].server, sd[0].port, sd[0].path, sd[0].scheme, sd[0].username, sd[0].password); - wsman_client_transport_init(cl, NULL); + wsmc_transport_init(cl, NULL); return 0; } int clean_test(void) { - wsman_client_release(cl); - wsman_client_transport_fini(cl); + wsmc_release(cl); + wsmc_transport_fini(cl); return 0; } |