We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 368563a commit 79765b6Copy full SHA for 79765b6
1 file changed
test/src/lib/LibDecimalFloat.pow.t.sol
@@ -119,14 +119,14 @@ contract LibDecimalFloatPowTest is LogTest {
119
/// Can generally round trip whatever within 0.25% of the original value.
120
function testRoundTripSimple() external {
121
checkRoundTrip(5, 0, 2, 0);
122
- // checkRoundTrip(5, 0, 3, 0);
123
- // checkRoundTrip(50, 0, 40, 0);
124
- // checkRoundTrip(5, -1, 3, -1);
125
- // checkRoundTrip(5, -1, 2, -1);
126
- // checkRoundTrip(5, 10, 3, 5);
127
- // checkRoundTrip(5, -1, 100, 0);
128
- // checkRoundTrip(7721, 0, -1, -2);
129
- // checkRoundTrip(4157, 0, -1, -2);
+ checkRoundTrip(5, 0, 3, 0);
+ checkRoundTrip(50, 0, 40, 0);
+ checkRoundTrip(5, -1, 3, -1);
+ checkRoundTrip(5, -1, 2, -1);
+ checkRoundTrip(5, 10, 3, 5);
+ checkRoundTrip(5, -1, 100, 0);
+ checkRoundTrip(7721, 0, -1, -2);
+ checkRoundTrip(4157, 0, -1, -2);
130
}
131
132
function powExternal(Float a, Float b) external returns (Float) {
0 commit comments