From d18cd653749ed5b19377733d21e1aeba053b5b42 Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 26 Mar 2018 17:22:23 -0400 Subject: [PATCH] db_test: fix 'recieve' typo --- db_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/db_test.go b/db_test.go index 3cb265c..9e578ff 100644 --- a/db_test.go +++ b/db_test.go @@ -67,10 +67,10 @@ func TestRegisterMany(t *testing.T) { t.Errorf("Test %d: Got error when fetching username: [%v]", i, err) } if len(user.AllowFrom) != len(test.output) { - t.Errorf("Test %d: Expected to recieve struct with [%d] entries in AllowFrom, but got [%d] records", i, len(test.output), len(user.AllowFrom)) + t.Errorf("Test %d: Expected to receive struct with [%d] entries in AllowFrom, but got [%d] records", i, len(test.output), len(user.AllowFrom)) } if len(res.AllowFrom) != len(test.output) { - t.Errorf("Test %d: Expected to recieve struct with [%d] entries in AllowFrom, but got [%d] records", i, len(test.output), len(res.AllowFrom)) + t.Errorf("Test %d: Expected to receive struct with [%d] entries in AllowFrom, but got [%d] records", i, len(test.output), len(res.AllowFrom)) } }