From 03ca300520c1479f64f788cd0f81e953c66b2c10 Mon Sep 17 00:00:00 2001 From: Minghao Li Date: Fri, 11 Nov 2022 09:20:05 +0800 Subject: [PATCH] refactor(sync): modify test, syncRespMgrTest.cpp --- source/libs/sync/test/syncRespMgrTest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/libs/sync/test/syncRespMgrTest.cpp b/source/libs/sync/test/syncRespMgrTest.cpp index cad6eec91d..bf9c070b47 100644 --- a/source/libs/sync/test/syncRespMgrTest.cpp +++ b/source/libs/sync/test/syncRespMgrTest.cpp @@ -64,10 +64,10 @@ void syncRespMgrGetTest(uint64_t i) { void syncRespMgrGetAndDelTest(uint64_t i) { printf("------syncRespMgrGetAndDelTest-------%" PRIu64 "-- \n", i); - SRespStub stub; + SRpcHandleInfo stub; int32_t ret = syncRespMgrGetAndDel(pMgr, i, &stub); if (ret == 1) { - printStub(&stub); + //printStub(&stub); } else if (ret == 0) { printf("%" PRId64 " notFound \n", i); } -- GitLab