From bd23c64a1283835f5991444bb47ec3da1895ff42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Mon, 1 Jul 2024 13:05:01 +0200 Subject: Fix gophercloud lint complains --- largeobject_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'largeobject_test.go') diff --git a/largeobject_test.go b/largeobject_test.go index e5b790b..fc0a2e4 100644 --- a/largeobject_test.go +++ b/largeobject_test.go @@ -31,17 +31,17 @@ func TestParseHTTPRange(t *testing.T) { offset int64 length uint64 }{ - //all the testcases from RFC 7233, section 3.1 + // all the testcases from RFC 7233, section 3.1 {"0-499", true, 0, 500}, {"500-999", true, 500, 500}, {"-500", true, -1, 500}, {"9500-", true, 9500, 0}, {"0-0", true, 0, 1}, {"-1", true, -1, 1}, - //and then some more + // and then some more {"0-", true, 0, 0}, {"-", true, 0, 0}, - //some error cases for 100% coverage + // some error cases for 100% coverage {"no dash", false, 0, 0}, {"what-the-heck", false, 0, 0}, {"-X", false, 0, 0}, -- cgit v1.2.3