Skip to content

Commit fa954f9

Browse files
committed
fix
1 parent 33ef7d7 commit fa954f9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/e2e/atlas_e2e_test_generator_test.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ import (
3232
"os/exec"
3333
"path"
3434
"slices"
35+
"strconv"
3536
"strings"
3637
"testing"
3738

@@ -88,7 +89,7 @@ func decompress(r *http.Response) error {
8889

8990
r.Body = io.NopCloser(buf)
9091
r.ContentLength = int64(buf.Len())
91-
r.Header["Content-Length"] = []string{fmt.Sprintf("%v", r.ContentLength)}
92+
r.Header["Content-Length"] = []string{strconv.FormatInt(r.ContentLength, 10)}
9293
}
9394
}
9495

0 commit comments

Comments
 (0)