You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sqoop.apache.org by ja...@apache.org on 2016/03/08 00:16:52 UTC

sqoop git commit: SQOOP-2875: Sqoop2: Integration tests should on include a request body with a delete request

Repository: sqoop
Updated Branches:
  refs/heads/sqoop2 2452b262e -> 049e0d7e8


SQOOP-2875: Sqoop2: Integration tests should on include a request body with a delete request

(Abraham Fine via Jarek Jarcec Cecho)


Project: http://git-wip-us.apache.org/repos/asf/sqoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/sqoop/commit/049e0d7e
Tree: http://git-wip-us.apache.org/repos/asf/sqoop/tree/049e0d7e
Diff: http://git-wip-us.apache.org/repos/asf/sqoop/diff/049e0d7e

Branch: refs/heads/sqoop2
Commit: 049e0d7e885a39a98220a6af6a9675d3b2774b81
Parents: 2452b26
Author: Jarek Jarcec Cecho <ja...@apache.org>
Authored: Mon Mar 7 15:16:22 2016 -0800
Committer: Jarek Jarcec Cecho <ja...@apache.org>
Committed: Mon Mar 7 15:16:48 2016 -0800

----------------------------------------------------------------------
 .../apache/sqoop/integration/server/rest/NonExistingRestTest.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/sqoop/blob/049e0d7e/test/src/test/java/org/apache/sqoop/integration/server/rest/NonExistingRestTest.java
----------------------------------------------------------------------
diff --git a/test/src/test/java/org/apache/sqoop/integration/server/rest/NonExistingRestTest.java b/test/src/test/java/org/apache/sqoop/integration/server/rest/NonExistingRestTest.java
index cb398ef..758e8fa 100644
--- a/test/src/test/java/org/apache/sqoop/integration/server/rest/NonExistingRestTest.java
+++ b/test/src/test/java/org/apache/sqoop/integration/server/rest/NonExistingRestTest.java
@@ -53,7 +53,7 @@ public class NonExistingRestTest extends RestTest {
     // Content changing requests for read-only resources
     new TestDescription("Put to version", "version", "PUT", "{}", notAllowedValidator),
     new TestDescription("POST to connector", "v1/connector", "POST", "{}", notAllowedValidator),
-    new TestDescription("DELETE to submission", "v1/submission", "DELETE", "{}", notAllowedValidator),
+    new TestDescription("DELETE to submission", "v1/submission", "DELETE", null, notAllowedValidator),
   };
 
   @DataProvider(name="non-existing-rest-test")