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:
parent
f51e62b742
commit
e92ed19424
2 changed files with 2 additions and 1 deletions
|
@ -17,6 +17,7 @@
|
||||||
package imageproxy // import "willnorris.com/go/imageproxy"
|
package imageproxy // import "willnorris.com/go/imageproxy"
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bufio"
|
||||||
"bytes"
|
"bytes"
|
||||||
"crypto/hmac"
|
"crypto/hmac"
|
||||||
"crypto/sha256"
|
"crypto/sha256"
|
||||||
|
|
|
@ -42,7 +42,7 @@ func TestCopyHeader(t *testing.T) {
|
||||||
|
|
||||||
// nothing to copy
|
// nothing to copy
|
||||||
{
|
{
|
||||||
dst: http.Header{"A": []string{"a1"}},
|
dst: http.Header{"A": []string{"a"}},
|
||||||
src: http.Header{},
|
src: http.Header{},
|
||||||
keys: nil,
|
keys: nil,
|
||||||
want: http.Header{"A": []string{"a1"}},
|
want: http.Header{"A": []string{"a1"}},
|
||||||
|
|
Loading…
Add table
Reference in a new issue