> +import java.io.InputStream;
> +import java.util.ArrayList;
> +import java.util.List;
> +
> +import static org.testng.Assert.assertEquals;
> +import static org.testng.Assert.assertNotNull;
> +
> +/**
> + * @author Bill Branan
> + */
> +@Test(groups = "unit")
> +public class ParseObjectInfoListFromJsonResponseTest {
> +
> + @Test
> + public void testNoUrlDecodingOfResponse() throws Exception {
> + String contentName = "swift-test-content-%20-1401395399020";
@bbranan changes `%x` to `%20` to make it match an actual URL encoded sequence,
but this test _still_ passes for me locally. Let's see what the PR builders say.
What is the character sequence that was actually causing the failures for you?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/389/files#r13259440