Skip to content

Commit 2d2760c

Browse files
committed
Remove helper test
1 parent e63b15d commit 2d2760c

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

test/reactors/V2DutchOrderReactor.t.sol

-15
Original file line numberDiff line numberDiff line change
@@ -254,21 +254,6 @@ contract V2DutchOrderTest is PermitSignature, DeployPermit2, BaseDutchOrderReact
254254
assertEq(tokenIn.balanceOf(address(fillContract)), inputAmount);
255255
}
256256

257-
function testEncoding() public {
258-
bytes memory encodedBytes =
259-
encodeExtraCosignerData(address(1111111111111111), 22222222222222, ArrayBuilder.fill(3, 5));
260-
assertTrue(encodedBytes.hasExclusiveFiller());
261-
assertTrue(encodedBytes.hasInputOverride());
262-
assertTrue(encodedBytes.hasOutputOverrides());
263-
(address filler, uint256 input, uint256[] memory output) = encodedBytes.decodeExtraParameters();
264-
assertEq(filler, address(1111111111111111));
265-
assertEq(input, 22222222222222);
266-
assertEq(output.length, 3);
267-
assertEq(output[0], 5);
268-
assertEq(output[1], 5);
269-
assertEq(output[2], 5);
270-
}
271-
272257
function testExclusivity() public {
273258
uint256 inputAmount = 1 ether;
274259
tokenIn.mint(swapper, inputAmount);

0 commit comments

Comments
 (0)