From 3a4c417ceea83d3026967b77dab042694cefc05e Mon Sep 17 00:00:00 2001 From: "Dustin J. Mitchell" Date: Wed, 2 Mar 2022 20:58:36 -0500 Subject: [PATCH] free replica in test --- integration-tests/src/bindings_tests/replica.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/integration-tests/src/bindings_tests/replica.c b/integration-tests/src/bindings_tests/replica.c index cd02d3a30..88651fc45 100644 --- a/integration-tests/src/bindings_tests/replica.c +++ b/integration-tests/src/bindings_tests/replica.c @@ -305,6 +305,8 @@ static void test_replica_get_task_not_found(void) { TCTask *task = tc_replica_get_task(rep, uuid); TEST_ASSERT_NULL(task); TEST_ASSERT_NULL(tc_replica_error(rep).ptr); + + tc_replica_free(rep); } int replica_tests(void) {