Skip to content

Commit

Permalink
Test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
greymistcube committed Nov 24, 2023
1 parent dc68cf8 commit db1794f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,8 @@ public async Task GetTx()
Assert.Equal(tx.Timestamp, transaction.Timestamp);
Assert.Equal(tx.UpdatedAddresses, transaction.UpdatedAddresses);

var plainValue = ToAction(tx.Actions!.First()).PlainValue.Inspect(true);
Assert.Equal(ToAction(transaction.Actions!.First()).PlainValue.Inspect(true), plainValue);
var plainValue = ToAction(tx.Actions!.First()).PlainValue.Inspect();
Assert.Equal(ToAction(transaction.Actions!.First()).PlainValue.Inspect(), plainValue);
}

[Theory]
Expand Down

0 comments on commit db1794f

Please sign in to comment.