From aba2b2fb3544d9e42991237c13d8cada421deda5 Mon Sep 17 00:00:00 2001 From: Greg Steuck Date: Tue, 15 Jun 2021 11:37:27 -0700 Subject: dashboard/app: document the values in maps and rename local vars The previous names confused a couple of unrelated concepts. --- dashboard/app/util_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dashboard/app/util_test.go') diff --git a/dashboard/app/util_test.go b/dashboard/app/util_test.go index bfb14c54b..628f77425 100644 --- a/dashboard/app/util_test.go +++ b/dashboard/app/util_test.go @@ -72,8 +72,8 @@ func NewCtx(t *testing.T) *Ctx { mockedTime: time.Date(2000, 1, 1, 0, 0, 0, 0, time.UTC), emailSink: make(chan *aemail.Message, 100), } - c.client = c.makeClient(client1, key1, true) - c.client2 = c.makeClient(client2, key2, true) + c.client = c.makeClient(client1, password1, true) + c.client2 = c.makeClient(client2, password2, true) registerContext(r, c) return c } -- cgit mrf-deployment