Skip to content

Commit

Permalink
added missing to: field
Browse files Browse the repository at this point in the history
  • Loading branch information
emuroni committed Sep 18, 2024
1 parent 3e7d3a7 commit dec04cf
Showing 1 changed file with 21 additions and 16 deletions.
37 changes: 21 additions & 16 deletions test/common/iden3comm_mocks.dart
Original file line number Diff line number Diff line change
Expand Up @@ -292,14 +292,16 @@ class Iden3commMocks {

static List<InteractionEntity> interactionEntities = [
InteractionEntity(
id: CommonMocks.intValues[0].toString(),
from: CommonMocks.did,
genesisDid: CommonMocks.did,
profileNonce: CommonMocks.nonce,
type: InteractionType.offer,
timestamp: 0,
message: CommonMocks.message,
state: InteractionState.opened),
id: CommonMocks.intValues[0].toString(),
from: CommonMocks.did,
genesisDid: CommonMocks.did,
profileNonce: CommonMocks.nonce,
type: InteractionType.offer,
timestamp: 0,
message: CommonMocks.message,
state: InteractionState.opened,
to: CommonMocks.did,
),
InteractionEntity(
id: CommonMocks.intValues[1].toString(),
from: CommonMocks.did,
Expand All @@ -309,15 +311,18 @@ class Iden3commMocks {
timestamp: 0,
message: CommonMocks.message,
state: InteractionState.received,
to: CommonMocks.did,
),
InteractionEntity(
id: CommonMocks.intValues[2].toString(),
from: CommonMocks.did,
genesisDid: CommonMocks.did,
profileNonce: CommonMocks.nonce,
type: InteractionType.offer,
timestamp: 0,
message: CommonMocks.message,
state: InteractionState.accepted),
id: CommonMocks.intValues[2].toString(),
from: CommonMocks.did,
genesisDid: CommonMocks.did,
profileNonce: CommonMocks.nonce,
type: InteractionType.offer,
timestamp: 0,
message: CommonMocks.message,
state: InteractionState.accepted,
to: CommonMocks.did,
),
];
}

0 comments on commit dec04cf

Please sign in to comment.