File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff 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 {
You can’t perform that action at this time.
0 commit comments