summaryrefslogtreecommitdiffabout
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--test/test.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test.cc b/test/test.cc
index 4bb2969..2143ac0 100644
--- a/test/test.cc
+++ b/test/test.cc
@@ -70,12 +70,14 @@ void test_rfc_3986_normalize_uri() {
test_rfc_3986_normalize_uri(
"http://hacker.klever.net/ah/%zx", false );
test_rfc_3986_normalize_uri(
"http://hacker.klever.net/ah/%5x", false );
test_rfc_3986_normalize_uri(
"Http://Hacker.Klever.Net:", true, "http://hacker.klever.net/" );
+ test_rfc_3986_normalize_uri(
+ "http://www.xxx.com/openid/1", true, "http://www.xxx.com/openid/1" );
}
void test_w3c_to_time(const char *w3c,time_t expected) {
time_t t = opkele::util::w3c_to_time(w3c);
if(t!=expected) {
char tmp[512]; snprintf(tmp,sizeof(tmp)-1,