This commit is contained in:
Hongze Cheng 2022-03-16 08:02:33 +00:00
parent 03ff33095d
commit fc63623ba3
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ TEST(tdb_test, simple_test) {
for (int i = 1; i <= 92; i++) {
sprintf(key, "key%d", i);
sprintf(key, "value%d", i);
sprintf(val, "value%d", i);
ret = tdbDbInsert(pDb, key, strlen(key), val, strlen(val));
GTEST_ASSERT_EQ(ret, 0);
}