Skip to content
Snippets Groups Projects
Commit 1c5a34e9 authored by Josh Brooks's avatar Josh Brooks
Browse files

Fix typo

parent ff832376
No related branches found
No related tags found
1 merge request!23Release
......@@ -82,11 +82,11 @@ func unmarshalConfirm(payload []byte) (e2e.SessionID, error) {
"unmarshal payload: %s", err)
}
confimedSessionID := e2e.SessionID{}
if err := confimedSessionID.Unmarshal(msg.SessionID); err != nil {
confirmedSessionID := e2e.SessionID{}
if err := confirmedSessionID.Unmarshal(msg.SessionID); err != nil {
return e2e.SessionID{}, errors.Errorf("Failed to unmarshal"+
" sessionID: %s", err)
}
return confimedSessionID, nil
return confirmedSessionID, nil
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment