Skip to content

Commit

Permalink
Cleanup in util test
Browse files Browse the repository at this point in the history
  • Loading branch information
chsc committed Nov 29, 2011
1 parent 2eb6c45 commit 668bb6d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Makefile
Expand Up @@ -14,6 +14,9 @@ GOFILES=\

include $(GOROOT)/src/Make.cmd

test:
gotest

format:
gofmt -w *.go

Expand Down
2 changes: 1 addition & 1 deletion util_test.go
Expand Up @@ -35,7 +35,7 @@ func TestParsedCategoryString(t *testing.T) {
te := &allTestCategories[i]
pc, err := ParseCategoryString(te.in)
if err != nil {
t.Fatalf(err.String())
t.Fatalf(err.Error())
}
t.Logf("%v", te)
if !reflect.DeepEqual(pc, te.out) {
Expand Down

0 comments on commit 668bb6d

Please sign in to comment.