Fix conformance tests

This commit is contained in:
Joel Speed 2018-01-30 11:18:00 +00:00
parent 7a76c767fe
commit b9b315dd64
No known key found for this signature in database
GPG Key ID: 6E80578D6751DEFB

View File

@ -512,6 +512,7 @@ func testOfflineSessionCRUD(t *testing.T, s storage.Storage) {
UserID: userID1,
ConnID: "Conn1",
Refresh: make(map[string]*storage.RefreshTokenRef),
ConnectorData: []byte(`{"some":"data"}`),
}
// Creating an OfflineSession with an empty Refresh list to ensure that
@ -529,6 +530,7 @@ func testOfflineSessionCRUD(t *testing.T, s storage.Storage) {
UserID: userID2,
ConnID: "Conn2",
Refresh: make(map[string]*storage.RefreshTokenRef),
ConnectorData: []byte(`{"some":"data"}`),
}
if err := s.CreateOfflineSessions(session2); err != nil {