Specify MaxSize in PATCH tests that refer to it
This commit is contained in:
parent
a74c46816d
commit
750d4d5eb6
|
@ -272,6 +272,7 @@ func TestPatch(t *testing.T) {
|
||||||
|
|
||||||
handler, _ := NewHandler(Config{
|
handler, _ := NewHandler(Config{
|
||||||
DataStore: store,
|
DataStore: store,
|
||||||
|
MaxSize: 20,
|
||||||
})
|
})
|
||||||
|
|
||||||
body := strings.NewReader("hellothisismore")
|
body := strings.NewReader("hellothisismore")
|
||||||
|
@ -307,6 +308,7 @@ func TestPatch(t *testing.T) {
|
||||||
|
|
||||||
handler, _ := NewHandler(Config{
|
handler, _ := NewHandler(Config{
|
||||||
DataStore: store,
|
DataStore: store,
|
||||||
|
MaxSize: 20,
|
||||||
})
|
})
|
||||||
|
|
||||||
(&httpTest{
|
(&httpTest{
|
||||||
|
@ -346,6 +348,7 @@ func TestPatch(t *testing.T) {
|
||||||
|
|
||||||
handler, _ := NewHandler(Config{
|
handler, _ := NewHandler(Config{
|
||||||
DataStore: store,
|
DataStore: store,
|
||||||
|
MaxSize: 20,
|
||||||
})
|
})
|
||||||
|
|
||||||
(&httpTest{
|
(&httpTest{
|
||||||
|
|
Loading…
Reference in New Issue