Here's a simple example that demonstrates the problem:
```
--- core/src/test/java/org/jclouds/http/UrisTest.java
+++ core/src/test/java/org/jclouds/http/UrisTest.java
@@ -66,7 +66,7 @@ public class UrisTest {
@DataProvider(name = "strings")
public Object[][] createData() {
return new Object[][] { { "normal" }, { "sp ace" }, { "qu?stion" }, {
"unic₪de" }, { "path/foo" }, { "colon:" },
- { "asteri*k" }, { "quote\"" }, { "great<r" }, { "lesst>en" }, {
"p|pe" } };
+ { "asteri*k" }, { "quote\"" }, { "great<r" }, { "lesst>en" }, {
"p|pe" }, {"pl+s"}};
}
@Test(dataProvider = "strings")
# Run testReplaceQueryIsEncoded, fails with:
java.lang.AssertionError:
Expected :/redirect?foo=pl+s
Actual :/redirect?foo=pl s
```
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/82#issuecomment-21981592