You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by bd...@apache.org on 2018/09/04 15:27:42 UTC

[sling-whiteboard] branch master updated: Avoid XML parser warning

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 58cb7e1  Avoid XML parser warning
58cb7e1 is described below

commit 58cb7e153df2ee75f1c6a02cfde876cdfea97c57
Author: Bertrand Delacretaz <bd...@apache.org>
AuthorDate: Tue Sep 4 17:27:33 2018 +0200

    Avoid XML parser warning
---
 karate-http-testing/src/test/java/util/cleanup-test-content.feature | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/karate-http-testing/src/test/java/util/cleanup-test-content.feature b/karate-http-testing/src/test/java/util/cleanup-test-content.feature
index b55c399..57abc10 100644
--- a/karate-http-testing/src/test/java/util/cleanup-test-content.feature
+++ b/karate-http-testing/src/test/java/util/cleanup-test-content.feature
@@ -20,6 +20,7 @@ Given path path
 When method DELETE
 Then status 204
 
+# Use HEAD to avoid an XML parsing warning
 Given path path
-When method GET
-Then status 404
+When method HEAD
+Then status 404
\ No newline at end of file