From 079f356cdae43e3e5ccceac6bc633a1b1533e937 Mon Sep 17 00:00:00 2001 From: Jake Taylor <jake@elixxir.io> Date: Tue, 6 Sep 2022 16:42:13 -0500 Subject: [PATCH] fix tests --- auth/store/store_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth/store/store_test.go b/auth/store/store_test.go index 3de11bc3b..acd6156c5 100644 --- a/auth/store/store_test.go +++ b/auth/store/store_test.go @@ -277,7 +277,7 @@ func TestStore_GetReceivedRequest_RequestDeleted(t *testing.T) { } // Check if the request's mutex is locked - if reflect.ValueOf(rr.mux).Elem().FieldByName("state").Int() != 0 { + if reflect.ValueOf(&rr.mux).Elem().FieldByName("state").Int() != 0 { t.Errorf("GetReceivedRequest() did not unlock mutex.") } } -- GitLab