Skip to content
This repository has been archived by the owner on May 24, 2024. It is now read-only.

Commit

Permalink
Added missing L of long in the Assert of OperationFeeStatsDeserializer
Browse files Browse the repository at this point in the history
  • Loading branch information
Kirbyrawr committed Feb 1, 2020
1 parent d3f8b93 commit 084fa5c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public static void AssertTestData(OperationFeeStatsResponse stats)
Assert.AreEqual(0.97m, stats.LedgerCapacityUsage);

//Assert Fee Charged Data
Assert.AreEqual(1, stats.FeeCharged.Min);
Assert.AreEqual(1L, stats.FeeCharged.Min);
Assert.AreEqual(100L, stats.FeeCharged.Mode);
Assert.AreEqual(10L, stats.FeeCharged.P10);
Assert.AreEqual(20L, stats.FeeCharged.P20);
Expand Down

0 comments on commit 084fa5c

Please sign in to comment.