summaryrefslogtreecommitdiffstats
path: root/test/core/description/test_description.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/core/description/test_description.c')
-rw-r--r--test/core/description/test_description.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/core/description/test_description.c b/test/core/description/test_description.c
index f3ce7d3..53c0c34 100644
--- a/test/core/description/test_description.c
+++ b/test/core/description/test_description.c
@@ -122,18 +122,17 @@ axis2_test_svc_get_op(axutil_env_t *env
struct axutil_qname *qname = NULL;
struct axutil_hash_t *ops = NULL;
struct axis2_op *op = NULL;
- axis2_status_t status = AXIS2_SUCCESS;
qname = axutil_qname_create(env, "op1", NULL, NULL);
op = axis2_op_create_with_qname(env, qname);
qname = axutil_qname_create(env, "svc1", NULL, NULL);
svc = axis2_svc_create_with_qname(env, qname);
- status = axis2_svc_add_op(svc, env, op);
+ axis2_svc_add_op(svc, env, op);
qname = axutil_qname_create(env, "op2", NULL, NULL);
op = axis2_op_create_with_qname(env, qname);
- status = axis2_svc_add_op(svc, env, op);
+ axis2_svc_add_op(svc, env, op);
ops = axis2_svc_get_all_ops(svc, env);
CUT_ASSERT(ops != NULL);