diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-06-10 07:58:23 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-06-10 07:58:23 -0400 |
commit | 5b648b30593e861693a02c4c5243595db2b5999e (patch) | |
tree | ac78a6515d742c8c3b3326ff6a988b994be2db89 /tests/test_strlist.c | |
parent | 75aa8070cc66a1bd6d4d95ada02b87cf7c1bfa9e (diff) | |
download | stasis-5b648b30593e861693a02c4c5243595db2b5999e.tar.gz |
Remove debug printf statements
Diffstat (limited to 'tests/test_strlist.c')
-rw-r--r-- | tests/test_strlist.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/test_strlist.c b/tests/test_strlist.c index 099ab3f..aa9eb4e 100644 --- a/tests/test_strlist.c +++ b/tests/test_strlist.c @@ -142,7 +142,6 @@ void test_strlist_append_file() { const char *right; left = strlist_item(list, z); right = expected[z]; - printf("left = '%s', right = '%s'\n", left, right); OMC_ASSERT(strcmp(left, right) == 0, "file content is different than expected"); } OMC_ASSERT(strcmp_array(list->data, expected) == 0, "file contents does not match expected values"); |