mirror of
https://github.com/aljazceru/turso.git
synced 2026-02-09 10:14:21 +01:00
delete printf in C test
This commit is contained in:
@@ -553,14 +553,9 @@ void test_sqlite3_column_decltype()
|
||||
|
||||
for (int i = 0; i < sqlite3_column_count(stmt); i++) {
|
||||
const char* decl = sqlite3_column_decltype(stmt, i);
|
||||
//printf("DECL %s \n", decl);
|
||||
//assert(decl != NULL);
|
||||
//assert(strcmp(decl, expected[i]) == 0);
|
||||
if (decl == NULL) {
|
||||
printf("DECL (null)\n");
|
||||
assert(expected[i] == NULL);
|
||||
} else {
|
||||
printf("DECL %s\n", decl);
|
||||
assert(strcmp(decl, expected[i]) == 0);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user