We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db37dc2 commit fa1d3a1Copy full SHA for fa1d3a1
conformance/setup.go
@@ -246,10 +246,10 @@ func init() {
246
testBlobBDigest = godigest.FromBytes(testBlobB).String()
247
testBlobBChunk1 = testBlobB[:3]
248
testBlobBChunk1Length = strconv.Itoa(len(testBlobBChunk1))
249
- testBlobBChunk1Range = fmt.Sprintf("0-%d", len(testBlobBChunk1)-1)
+ testBlobBChunk1Range = fmt.Sprintf("bytes 0-%d", len(testBlobBChunk1)-1)
250
testBlobBChunk2 = testBlobB[3:]
251
testBlobBChunk2Length = strconv.Itoa(len(testBlobBChunk2))
252
- testBlobBChunk2Range = fmt.Sprintf("%d-%d", len(testBlobBChunk1), len(testBlobB)-1)
+ testBlobBChunk2Range = fmt.Sprintf("bytes %d-%d", len(testBlobBChunk1), len(testBlobB)-1)
253
254
dummyDigest = godigest.FromString("hello world").String()
255
0 commit comments