Skip to content

Commit

Permalink
Update InteropBindingTests.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
schwartz-concordium committed Jan 26, 2024
1 parent 9de5bba commit eb7ce2d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/UnitTests/Interop/InteropBindingTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,9 @@ public async Task GivenBadReceiveParam_WhenDisplayReceiveParam_ThenThrowExceptio
// Assert
action.Should().Throw<InteropBindingException>()
.Where(e =>
e.Result == Result.JsonError &&
e.Message.StartsWith("Failed to deserialize AccountAddress due to: Could not parse AccountAddress", StringComparison.Ordinal));
e.Result == Result.JsonError
// && e.Message.StartsWith("Failed to deserialize AccountAddress due to: Could not parse AccountAddress")
);
}

[Fact]
Expand Down

0 comments on commit eb7ce2d

Please sign in to comment.