From 2386c5adc197fad86eefe055038076ec7f334423 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Fri, 11 Jan 2019 12:29:14 +0000 Subject: [PATCH] hubic: fix tests for optional methods --- backend/hubic/hubic_test.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/backend/hubic/hubic_test.go b/backend/hubic/hubic_test.go index 8176f0a48..335642250 100644 --- a/backend/hubic/hubic_test.go +++ b/backend/hubic/hubic_test.go @@ -11,7 +11,9 @@ import ( // TestIntegration runs integration tests against the remote func TestIntegration(t *testing.T) { fstests.Run(t, &fstests.Opt{ - RemoteName: "TestHubic:", - NilObject: (*hubic.Object)(nil), + RemoteName: "TestHubic:", + NilObject: (*hubic.Object)(nil), + SkipFsCheckWrap: true, + SkipObjectCheckWrap: true, }) }