Skip to content

Commit

Permalink
feat: implement ListSessions in store
Browse files Browse the repository at this point in the history
  • Loading branch information
lauraBassani committed Oct 26, 2023
1 parent 3830021 commit d885181
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion manager/store/firestore/session_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
package firestore_test

import (
"fmt"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/thoughtworks/maeve-csms/manager/store"
Expand Down Expand Up @@ -61,7 +62,7 @@ func TestListSessions(t *testing.T) {
sessions[i] = &store.Session{
CountryCode: "BEL",
PartyId: "TWK",
Id: "s001",
Id: fmt.Sprintf("s%03d", i),
StartDateTime: "", //Look at
EndDateTime: "",
Kwh: 5,
Expand Down

0 comments on commit d885181

Please sign in to comment.