Fix formatting.

This commit is contained in:
Julius Volz 2013-01-25 14:12:16 +01:00
parent 765bceca3e
commit 07e51540eb

View file

@ -14,12 +14,12 @@
package config package config
import ( import (
"testing" "testing"
) )
func TestLoadFromFile(t *testing.T) { func TestLoadFromFile(t *testing.T) {
_, err := LoadFromFile("file-does-not-exist.conf") _, err := LoadFromFile("file-does-not-exist.conf")
if err == nil { if err == nil {
t.Error(err) t.Error(err)
} }
} }