[ARVADOS] updated: 1.1.2-264-g067ca04

Git user git at public.curoverse.com
Tue Feb 6 10:07:42 EST 2018


Summary of changes:
 build/libcloud-pin.sh                   |  2 +-
 sdk/R/tests/testthat/test-RESTService.R | 10 +++++-----
 services/nodemanager/setup.py           |  4 ++--
 3 files changed, 8 insertions(+), 8 deletions(-)

       via  067ca04652413e2bacd76e9ac5c5c245aa27a291 (commit)
       via  10c8c1871bef6d88ae27797e4b389fbf8649f4b0 (commit)
       via  6331a6c3edee1fef0dc22eb2e2407f2c60168816 (commit)
       via  318d42f0d64cfca262eae5e902ea6fecb724c89a (commit)
      from  abdc3d88ac10b8f3b634b4f1edd46e3597d54ee2 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit 067ca04652413e2bacd76e9ac5c5c245aa27a291
Author: Fuad Muhic <fmuhic at capeannenterprises.com>
Date:   Tue Feb 6 16:06:39 2018 +0100

    Fix 5 failing tests
    
    Arvados-DCO-1.1-Signed-off-by: Fuad Muhic <fmuhic at capeannenterprises.com>

diff --git a/sdk/R/tests/testthat/test-RESTService.R b/sdk/R/tests/testthat/test-RESTService.R
index 72c9e12..d4f3c2c 100644
--- a/sdk/R/tests/testthat/test-RESTService.R
+++ b/sdk/R/tests/testthat/test-RESTService.R
@@ -73,7 +73,7 @@ test_that("getResource raises exception if response contains errors field", {
                             FakeHttpParser$new(),
                             0, "webDavHost")
     
-    expect_that(REST$getResource("collections", resourceUUID), throws_error(404))
+    expect_that(REST$getResource("collections", resourceUUID), throws_error("404", fixed = TRUE))
 }) 
 
 test_that("listResources calls REST service properly", {
@@ -114,7 +114,7 @@ test_that("listResources raises exception if response contains errors field", {
                             FakeHttpParser$new(),
                             0, "webDavHost")
     
-    expect_that(REST$listResources("collections"), throws_error(404))
+    expect_that(REST$listResources("collections"), throws_error("404", fixed = TRUE))
 }) 
 
 test_that("fetchAllItems always returns all resource items from server", {
@@ -187,7 +187,7 @@ test_that("deleteCollection raises exception if response contains errors field",
                             FakeHttpParser$new(),
                             0, "webDavHost")
     
-    expect_that(REST$deleteResource("collections", resourceUUID), throws_error(404))
+    expect_that(REST$deleteResource("collections", resourceUUID), throws_error("404", fixed = TRUE))
 }) 
 
 test_that("updateResource calls REST service properly", {
@@ -236,7 +236,7 @@ test_that("updateResource raises exception if response contains errors field", {
                             0, "webDavHost")
     
     expect_that(REST$updateResource("collections", resourceUUID, newResourceContent),
-                throws_error(404))
+                throws_error("404", fixed = TRUE))
 }) 
 
 test_that("createResource calls REST service properly", {
@@ -286,7 +286,7 @@ test_that("createResource raises exception if response contains errors field", {
                             0, "webDavHost")
     
     expect_that(REST$createResource("collections", resourceContent),
-                throws_error(404))
+                throws_error("404", fixed = TRUE))
 }) 
 
 test_that("create calls REST service properly", {

commit 10c8c1871bef6d88ae27797e4b389fbf8649f4b0
Merge: abdc3d8 6331a6c
Author: Fuad Muhic <fmuhic at capeannenterprises.com>
Date:   Tue Feb 6 10:46:30 2018 +0100

    Merge branch 'master' of git.curoverse.com:arvados into 11876-r-sdk
    
    Arvados-DCO-1.1-Signed-off-by: Fuad Muhic <fmuhic at capeannenterprises.com>


-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list