Skip to content

Commit be73dce

Browse files
committed
chore: lint
1 parent d6b4afd commit be73dce

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

tests/unit/TestGsm.t.sol

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,16 @@ contract TestGsm is TestGhoBase {
9494
function testTypehash() public {
9595
bytes32 buyTypeHash = vm.eip712HashType('BuyAssetWithSig');
9696
bytes32 sellTypeHash = vm.eip712HashType('SellAssetWithSig');
97-
assertEq(buyTypeHash, GHO_GSM.BUY_ASSET_WITH_SIG_TYPEHASH(), 'Unexpected buy asset typed data hash');
98-
assertEq(sellTypeHash, GHO_GSM.SELL_ASSET_WITH_SIG_TYPEHASH(), 'Unexpected sell asset typed data hash');
97+
assertEq(
98+
buyTypeHash,
99+
GHO_GSM.BUY_ASSET_WITH_SIG_TYPEHASH(),
100+
'Unexpected buy asset typed data hash'
101+
);
102+
assertEq(
103+
sellTypeHash,
104+
GHO_GSM.SELL_ASSET_WITH_SIG_TYPEHASH(),
105+
'Unexpected sell asset typed data hash'
106+
);
99107
}
100108

101109
function testSellAssetZeroFee() public {

0 commit comments

Comments
 (0)