Skip to content

Commit 79765b6

Browse files
lint
1 parent 368563a commit 79765b6

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

test/src/lib/LibDecimalFloat.pow.t.sol

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -119,14 +119,14 @@ contract LibDecimalFloatPowTest is LogTest {
119119
/// Can generally round trip whatever within 0.25% of the original value.
120120
function testRoundTripSimple() external {
121121
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);
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);
130130
}
131131

132132
function powExternal(Float a, Float b) external returns (Float) {

0 commit comments

Comments
 (0)