From 07ab9c196d274b0491e96d7e4f2fba53daeb24c1 Mon Sep 17 00:00:00 2001 From: braginini Date: Fri, 20 Aug 2021 15:51:29 +0200 Subject: [PATCH] fix: golint errors --- management/server/account_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/management/server/account_test.go b/management/server/account_test.go index 81ed25fe4..0bae94d11 100644 --- a/management/server/account_test.go +++ b/management/server/account_test.go @@ -80,6 +80,9 @@ func TestAccountManager_GetOrCreateAccount(t *testing.T) { t.Errorf("expected to get existing account after creation, failed") } + if account.Id != expectedId { + t.Fatalf("expected to create an account, got wrong account") + } } func TestAccountManager_AccountExists(t *testing.T) {