Skip to content

Commit 2ef0724

Browse files
committed
update deps
1 parent 65f07f3 commit 2ef0724

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

http/multipart/multipart_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ func TestReadFilesFromStream(t *testing.T) {
2121
file2 := path.Join(sourceDir, "test2.txt")
2222
file1Content := []byte("test content1")
2323
file2Content := []byte("test content2")
24-
assert.NoError(t, os.WriteFile(file1, file1Content, 0644))
25-
assert.NoError(t, os.WriteFile(file2, file2Content, 0644))
24+
assert.NoError(t, os.WriteFile(file1, file1Content, 0600))
25+
assert.NoError(t, os.WriteFile(file2, file2Content, 0600))
2626

2727
// Create the multipart writer that will stream our files
2828
body := &bytes.Buffer{}

0 commit comments

Comments
 (0)