Skip to content
Snippets Groups Projects
Commit 079f356c authored by Jake Taylor's avatar Jake Taylor
Browse files

fix tests

parent fa2bb429
No related branches found
No related tags found
3 merge requests!510Release,!365attempt to fix mutex segfault in HandleReceivedRequest,!354Channels impl
......@@ -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.")
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment