diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/items.go | 2 | ||||
-rw-r--r-- | tests/test.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/items.go b/tests/items.go index ee86c3e..d39cae9 100644 --- a/tests/items.go +++ b/tests/items.go @@ -11,7 +11,7 @@ type Item struct { sleepy.DeleteNotSupported } -func (item Item) Get(values ...url.Values) (int, interface{}) { +func (item Item) Get(values url.Values) (int, interface{}) { items := []string{"item1", "item2"} data := map[string][]string{"items": items} diff --git a/tests/test.go b/tests/test.go index d225072..070d4b6 100644 --- a/tests/test.go +++ b/tests/test.go @@ -11,7 +11,7 @@ type Bar struct { sleepy.DeleteNotSupported } -func (b Bar) Get(values ...url.Values) (int, interface{}) { +func (b Bar) Get(values url.Values) (int, interface{}) { return 200, map[string]string{"hello": "goodbye"} } |