From 9cca8d1db64513f2b60b7a45c638349169c28e4b Mon Sep 17 00:00:00 2001 From: Aaron Lindsay Date: Wed, 1 Nov 2017 21:03:20 -0400 Subject: [PATCH] accounts_test.go: Fix typo in failure message --- internal/handlers/accounts_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/handlers/accounts_test.go b/internal/handlers/accounts_test.go index befbe56..c1045d0 100644 --- a/internal/handlers/accounts_test.go +++ b/internal/handlers/accounts_test.go @@ -55,7 +55,7 @@ func TestCreateAccount(t *testing.T) { a := d.accounts[i] if a.AccountId == 0 { - t.Errorf("Unable to create security: %+v", a) + t.Errorf("Unable to create account: %+v", a) } if a.Type != orig.Type { t.Errorf("Type doesn't match")