summaryrefslogtreecommitdiffstats
path: root/src/junit
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2013-08-30 16:26:01 +0200
committerSven Gothel <[email protected]>2013-08-30 16:26:01 +0200
commitae1dd6990fb4f0f20cc908916a9cb68f0be866ff (patch)
treef52706949ce90928101f373b42ae080df7139925 /src/junit
parent0931943b4498eafe857a47dbfa19592caef51546 (diff)
URIQueryProps: Custumize query separator, allowing user to favor ';' over '&'
Diffstat (limited to 'src/junit')
-rw-r--r--src/junit/com/jogamp/common/net/URLCompositionTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/junit/com/jogamp/common/net/URLCompositionTest.java b/src/junit/com/jogamp/common/net/URLCompositionTest.java
index dcf8d9c..a33a4b3 100644
--- a/src/junit/com/jogamp/common/net/URLCompositionTest.java
+++ b/src/junit/com/jogamp/common/net/URLCompositionTest.java
@@ -220,7 +220,7 @@ public class URLCompositionTest extends JunitTracer {
URI uri1 = new URI(uri_s1);
showURI(uri0);
showURI(uri1);
- URIQueryProps data = URIQueryProps.create(uri1);
+ URIQueryProps data = URIQueryProps.create(uri1, ';');
if(null == data) {
System.err.println("Error: NULL: <"+uri_s1+"> -> "+uri1+" -> NULL");
} else {