SLING-1407 - creating NameValuePairList utility class and adding method to SlingIntegrationTestClient. This created one ambiguous method call in PostRedirectTest.

git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@915489 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/test/java/org/apache/sling/launchpad/webapp/integrationtest/PostRedirectTest.java b/src/test/java/org/apache/sling/launchpad/webapp/integrationtest/PostRedirectTest.java
index 4c88a7d..9bb9419 100644
--- a/src/test/java/org/apache/sling/launchpad/webapp/integrationtest/PostRedirectTest.java
+++ b/src/test/java/org/apache/sling/launchpad/webapp/integrationtest/PostRedirectTest.java
@@ -47,8 +47,7 @@
     public void testDefaultRedirect() throws IOException {
         final Map<String, String> params = new HashMap<String, String>();
         params.put(":redirect", null);
-        final String location = testClient.createNode(postUrl, null, null,
-            false);
+        final String location = testClient.createNode(postUrl, null);
         assertTrue("With no headers or parameters, redirect (" + location
             + ") must point to created node (path=" + postPath + ")",
             location.contains(postPath));