aboutsummaryrefslogtreecommitdiff
path: root/largeobject_test.go
diff options
context:
space:
mode:
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},