Skip to content

Commit

Permalink
fixup! fix(InteractionOutput): adjust implementation to spec
Browse files Browse the repository at this point in the history
  • Loading branch information
JKRhb committed Jan 27, 2024
1 parent ce6c62b commit 8643ab3
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions test/core/interaction_output_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@ void main() {
]),
);

final interactionOutput = InteractionOutput(content, contentSerdes);
final interactionOutput = InteractionOutput(
content,
contentSerdes,
null,
const DataSchema(),
);

final value1 = await interactionOutput.value();
expect(value1, inputValue);
Expand All @@ -46,7 +51,12 @@ void main() {
]),
);

final interactionOutput = InteractionOutput(content, contentSerdes);
final interactionOutput = InteractionOutput(
content,
contentSerdes,
null,
const DataSchema(),
);

final value1 = await interactionOutput.value();
expect(value1, inputValue);
Expand Down

0 comments on commit 8643ab3

Please sign in to comment.