Fix RestUtilUnit test
Description Fix RestUtilUnit test Testing RESTUtilUnits.toml
This commit is contained in:
parent
d54e24ee2e
commit
a196f2fd75
|
@ -318,7 +318,8 @@ TEST_CASE("/RESTUtils/ValidURIWithExtraForwardSlash") {
|
|||
ASSERT_EQ(r.connType.secure, RESTConnectionType::SECURE_CONNECTION);
|
||||
ASSERT_EQ(r.host.compare("host"), 0);
|
||||
ASSERT(r.service.empty());
|
||||
ASSERT_EQ(r.resource.compare("/foo/bar"), 0);
|
||||
printf("resource %s\n", r.resource.c_str());
|
||||
ASSERT_EQ(r.resource.compare("//foo/bar"), 0);
|
||||
return Void();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue