refactor(sync): modify test, syncRespMgrTest.cpp

This commit is contained in:
Minghao Li 2022-11-11 09:20:05 +08:00
parent fb9e62afe2
commit 03ca300520
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}