Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
dianakocsis committed Oct 28, 2024
1 parent 9f41e1b commit ad52b77
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions test/libraries/SafeCurrencyMetadata.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import "forge-std/Test.sol";
import {SafeCurrencyMetadata} from "../../src/libraries/SafeCurrencyMetadata.sol";

contract SafeCurrencyMetadataTest is Test {

function test_truncateSymbol_succeeds() public pure {
// 12 characters
assertEq(SafeCurrencyMetadata.truncateSymbol("123456789012"), "123456789012");
Expand All @@ -14,5 +13,4 @@ contract SafeCurrencyMetadataTest is Test {
// 14 characters
assertEq(SafeCurrencyMetadata.truncateSymbol("12345678901234"), "123456789012");
}

}
}

0 comments on commit ad52b77

Please sign in to comment.