aboutsummaryrefslogtreecommitdiff
path: root/largeobject_test.go
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2024-07-01 13:05:01 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2024-07-01 13:05:35 +0200
commitbd23c64a1283835f5991444bb47ec3da1895ff42 (patch)
treed548aa20b2944b578a429aeae2ac1790b6f0f69a /largeobject_test.go
parent21ec57dc4fed205fde1890c0d7531aae6197b3db (diff)
downloadgo-schwift-bd23c64a1283835f5991444bb47ec3da1895ff42.tar.gz
Fix gophercloud lint complains
Diffstat (limited to 'largeobject_test.go')
-rw-r--r--largeobject_test.go6
1 files changed, 3 insertions, 3 deletions
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},