2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-29 13:07:50 +00:00

[4277] Fixed PsqlBindArray.basicOperation unit test

Fixed test now that PsqlBindArray.toText() works right.
This commit is contained in:
Thomas Markwalder 2016-06-24 14:35:10 -04:00
parent 0ce4fe5b36
commit 3466f6506d

View File

@ -107,7 +107,7 @@ TEST(PsqlBindArray, basicOperation) {
"5 : \"3221360418\"\n" "5 : \"3221360418\"\n"
"6 : \"3001::1\"\n" "6 : \"3001::1\"\n"
"7 : \"just a string\"\n" "7 : \"just a string\"\n"
"8 : 0x010203040506070809\n"; "8 : 0x0102030405060708090a\n";
EXPECT_EQ(expected, b.toText()); EXPECT_EQ(expected, b.toText());
} }