aboutsummaryrefslogtreecommitdiff
path: root/tests/test.go
diff options
context:
space:
mode:
authorDoug Black <dblack@twilio.com>2014-01-27 12:09:18 -0500
committerDoug Black <dblack@twilio.com>2014-01-27 12:09:18 -0500
commitc60cc1e97e7c8af2cbf5c122717035c7f48aae24 (patch)
treecf704d09bf148822dd2b62fb90690eccb2be6bc0 /tests/test.go
parentupdate README (diff)
downloadsleepy-c60cc1e97e7c8af2cbf5c122717035c7f48aae24.tar.gz
sleepy-c60cc1e97e7c8af2cbf5c122717035c7f48aae24.tar.bz2
sleepy-c60cc1e97e7c8af2cbf5c122717035c7f48aae24.zip
formatting and use 'errors'
Diffstat (limited to 'tests/test.go')
-rw-r--r--tests/test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test.go b/tests/test.go
index fededa1..6e0d936 100644
--- a/tests/test.go
+++ b/tests/test.go
@@ -1,11 +1,11 @@
package main
import (
- "net/url"
"github.com/dougblack/sleepy"
+ "net/url"
)
-type Item struct {}
+type Item struct{}
func (item Item) Get(values url.Values) (int, interface{}) {
items := []string{"item1", "item2"}
bgstack15