This is an automated email from the ASF dual-hosted git repository.
bdelacretaz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-whiteboard.git
The following commit(s) were added to refs/heads/master by this push:
new c31a2d2 POST to * to really use the Location header
c31a2d2 is described below
commit c31a2d2532ce24cc8089d7c27d81d0aab88b8028
Author: Bertrand Delacretaz <[email protected]>
AuthorDate: Fri Jul 27 11:39:49 2018 +0200
POST to * to really use the Location header
---
.../src/test/java/sling/postservlet/createcontent/createContent.feature | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/literate-http-testing/karate/src/test/java/sling/postservlet/createcontent/createContent.feature
b/literate-http-testing/karate/src/test/java/sling/postservlet/createcontent/createContent.feature
index e764c88..7dd5c04 100644
---
a/literate-http-testing/karate/src/test/java/sling/postservlet/createcontent/createContent.feature
+++
b/literate-http-testing/karate/src/test/java/sling/postservlet/createcontent/createContent.feature
@@ -25,7 +25,7 @@ Scenario: Create a resource with a POST and read back with a
GET
* def testID = '' + java.util.UUID.randomUUID()
* def testTitle = 'Title for the First Resource at ' + testID
-Given url 'http://localhost:8080/tmp/' + testID
+Given url 'http://localhost:8080/tmp/*'
And form field title = testTitle
And form field anotherField = testID
When method POST