Skip to content

Commit ec540b9

Browse files
committed
fmt
1 parent 60c3d92 commit ec540b9

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

test/v1.5/OpenVmHalo2Verifer.t.sol

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,8 @@ contract OpenVmHalo2VerifierTest is Test {
4242
guestPvs[i] = bytes1(uint8(i));
4343
}
4444

45-
(bool success,) = address(verifier).delegatecall(
46-
abi.encodeCall(OpenVmHalo2Verifier.verify, (guestPvs, proofData, appExeCommit, appVmCommit))
47-
);
45+
(bool success,) = address(verifier)
46+
.delegatecall(abi.encodeCall(OpenVmHalo2Verifier.verify, (guestPvs, proofData, appExeCommit, appVmCommit)));
4847
require(success, "Verification failed");
4948
}
5049

0 commit comments

Comments
 (0)