fixed formatting issue

This commit is contained in:
Mat Ryer 2012-10-16 21:22:47 +01:00
parent d50356063b
commit ca63639b8d

View File

@ -16,10 +16,10 @@ The `assert` package provides some helpful methods that allow you to write bette
Some examples: Some examples:
func TestSomething(t *testing.T) { func TestSomething(t *testing.T) {
assert.Equal(t, 123, 123, "they should be equal") assert.Equal(t, 123, 123, "they should be equal")
assert.NotNil(t, object) assert.NotNil(t, object)
assert.Nil(t, object) assert.Nil(t, object)
} }