tpl: Fix typos in tests
authorCameron Moore <moorereason@gmail.com>
Wed, 17 Aug 2016 03:26:19 +0000 (22:26 -0500)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 12 Sep 2016 08:56:24 +0000 (10:56 +0200)
Closes #2370

tpl/template_funcs_test.go

index eee4c36f21cccc9c3cc8dae0b9fd1efe32835f15..a1c09bd9f0376786aa33f090be108808efe56c61 100644 (file)
@@ -768,7 +768,7 @@ func TestSplit(t *testing.T) {
        }{
                {"a, b", ", ", []string{"a", "b"}},
                {"a & b & c", " & ", []string{"a", "b", "c"}},
-               {"http://exmaple.com", "http://", []string{"", "exmaple.com"}},
+               {"http://example.com", "http://", []string{"", "example.com"}},
                {123, "2", []string{"1", "3"}},
                {tstNoStringer{}, ",", false},
        } {
@@ -862,7 +862,7 @@ func (x TstX) MethodWithArg(s string) string {
 func (x TstX) MethodReturnNothing() {}
 
 func (x TstX) MethodReturnErrorOnly() error {
-       return errors.New("something error occured")
+       return errors.New("some error occurred")
 }
 
 func (x TstX) MethodReturnTwoValues() (string, string) {
@@ -870,7 +870,7 @@ func (x TstX) MethodReturnTwoValues() (string, string) {
 }
 
 func (x TstX) MethodReturnValueWithError() (string, error) {
-       return "", errors.New("something error occured")
+       return "", errors.New("some error occurred")
 }
 
 func (x TstX) String() string {