sahaya / rest-assured

Automatically exported from code.google.com/p/rest-assured
0 stars 0 forks source link

Fails to parse multiple query parameters #219

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
I have a request url with multiple parameters in it. Ex: 
http://localhost:8080/brghetdjaldj/abc/efg?param=value1&param=value2&param=value
3

Note: All the parameters have the same key: in the above case: "param".

What is the expected output? What do you see instead?
I expect to see a list of three values for the parameter "param". Instead, I 
see only the last param being read with value: "value3".

What version of the product are you using? On what operating system?
1.7.2 on Mac OS X 10.8.2

Original issue reported on code.google.com by vijaybha...@gmail.com on 28 Feb 2013 at 5:37

GoogleCodeExporter commented 9 years ago
I think that this is fixed in master, please try out version 1.8.2-SNAPSHOT 
after having added the following repo:

<repositories>
        <repository>
            <id>sonatype</id>
            <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
            <snapshots />
        </repository>
</repositories>

Original comment by johan.ha...@gmail.com on 20 Nov 2013 at 8:30