Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
sverdlov93 committed Mar 7, 2024
1 parent 65f07f3 commit 2ef0724
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions http/multipart/multipart_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ func TestReadFilesFromStream(t *testing.T) {
file2 := path.Join(sourceDir, "test2.txt")
file1Content := []byte("test content1")
file2Content := []byte("test content2")
assert.NoError(t, os.WriteFile(file1, file1Content, 0644))
assert.NoError(t, os.WriteFile(file2, file2Content, 0644))
assert.NoError(t, os.WriteFile(file1, file1Content, 0600))
assert.NoError(t, os.WriteFile(file2, file2Content, 0600))

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

0 comments on commit 2ef0724

Please sign in to comment.