aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/src/PercentEncodedCharacterDecoderTests.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/src/PercentEncodedCharacterDecoderTests.cpp b/test/src/PercentEncodedCharacterDecoderTests.cpp
index fbc3d5e..fcc4286 100644
--- a/test/src/PercentEncodedCharacterDecoderTests.cpp
+++ b/test/src/PercentEncodedCharacterDecoderTests.cpp
@@ -21,6 +21,8 @@ TEST(PercentEncodedCharacterDecoderTests, GoodSequences) {
{{'4', '1'}, 'A'},
{{'5', 'A'}, 'Z'},
{{'6', 'e'}, 'n'},
+ {{'e', '1'}, (char)0xe1},
+ {{'C', 'A'}, (char)0xca},
};
size_t index = 0;
for (auto testVector: testVectors) {