adapt sshbuf_dump test to new output format

This commit is contained in:
Markus Friedl
2012-02-15 11:01:22 +01:00
parent 93f2ac802a
commit 60702a301e

View File

@@ -40,7 +40,7 @@ sshbuf_misc_tests(void)
ASSERT_INT_NE(feof(out), 0);
ASSERT_SIZE_T_GT(sz, 0);
tmp[sz] = '\0';
ASSERT_PTR_NE(strstr(tmp, "12345678"), NULL);
ASSERT_PTR_NE(strstr(tmp, "12 34 56 78"), NULL);
fclose(out);
sshbuf_free(p1);
TEST_DONE();