0
Fork 0
mirror of https://github.com/willnorris/imageproxy.git synced 2025-01-27 23:04:32 -05:00

fix build, but break tests

This commit is contained in:
Will Norris 2018-07-26 21:11:08 -07:00
parent f51e62b742
commit e92ed19424
2 changed files with 2 additions and 1 deletions

View file

@ -17,6 +17,7 @@
package imageproxy // import "willnorris.com/go/imageproxy"
import (
"bufio"
"bytes"
"crypto/hmac"
"crypto/sha256"

View file

@ -42,7 +42,7 @@ func TestCopyHeader(t *testing.T) {
// nothing to copy
{
dst: http.Header{"A": []string{"a1"}},
dst: http.Header{"A": []string{"a"}},
src: http.Header{},
keys: nil,
want: http.Header{"A": []string{"a1"}},