Skip to content

Commit

Permalink
fix content disposition test failure message
Browse files Browse the repository at this point in the history
  • Loading branch information
kstuart committed Jan 23, 2023
1 parent 66d91bf commit 7161a2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion files/multifilereader_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,6 @@ func testContentDispositionEncoding(t *testing.T, form bool, filename string, ex
mfr.addContentDisposition(header, filename)
v := header.Get(contentDispositionHeader)
if v != expected {
t.Fatalf("expected content-disposition to be: %s", v)
t.Fatalf("content-disposition did not match:\nExpected: %s\nActual : %s", expected, v)
}
}

0 comments on commit 7161a2f

Please sign in to comment.