diff options
author | Doug Black <dblack@twilio.com> | 2014-01-26 09:31:03 -0800 |
---|---|---|
committer | Doug Black <dblack@twilio.com> | 2014-01-26 09:31:03 -0800 |
commit | f20e28cf6057f85316d3241346d88f500cca2adc (patch) | |
tree | 61af163ad2588e6c8d24d6286646c16aeaae3aa8 /tests/test.go | |
parent | cleaner (diff) | |
download | sleepy-f20e28cf6057f85316d3241346d88f500cca2adc.tar.gz sleepy-f20e28cf6057f85316d3241346d88f500cca2adc.tar.bz2 sleepy-f20e28cf6057f85316d3241346d88f500cca2adc.zip |
fixes from comments
Diffstat (limited to 'tests/test.go')
-rw-r--r-- | tests/test.go | 2 |
1 files changed, 1 insertions, 1 deletions
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"} } |