From 9a11d3efd90b9ba4887a90097a28802825b4e434 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Sat, 10 Jun 2017 13:48:00 +0100 Subject: [PATCH] Revert "Start Cat tests from 2 as onedrive doesn't support ranging from 1" Now that https://github.com/OneDrive/onedrive-api-docs/issues/543 is fixed, this can be reverted. This reverts commit 320c53eab0d86095d4854fbb80097b5b05bb0ece. --- fs/operations_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/operations_test.go b/fs/operations_test.go index e9dbd84e5..1aa9bbebe 100644 --- a/fs/operations_test.go +++ b/fs/operations_test.go @@ -704,7 +704,7 @@ func TestCat(t *testing.T) { {0, -1, "ABCDEFGHIJ", "012345678"}, {0, 5, "ABCDE", "01234"}, {-3, -1, "HIJ", "678"}, - {2, 3, "CDE", "234"}, + {1, 3, "BCD", "123"}, } { var buf bytes.Buffer err := fs.Cat(r.fremote, &buf, test.offset, test.count)