function testAdvancedPartialMaxEndTime() public {
	FuzzInputs memory inputs = FuzzInputs(
		0,
		address(0),
		bytes32(0),
		0,
		0,
		[uint120(10), 20, 30],
		false,
		1,
		1
	);

	_testAdvancedPartialMaxEndTime(
		Context(consideration, inputs, 10, 10)
	);
}

function _testAdvancedPartialMaxEndTime(
	Context memory context
) internal resetTokenBalancesBetweenRuns {
	bytes32 conduitKey = context.args.useConduit
		? conduitKeyOne
		: bytes32(0);

	uint startAmount = 10;
	uint endAmount = 20;

	test1155_1.mint(
		alice,
		context.args.tokenId,
		endAmount
	);

	_configureOfferItem(
		ItemType.ERC1155,
		context.args.tokenId,
		startAmount,
		endAmount
	);
	_configureEthConsiderationItem(
		alice,
		10
	);

	OrderParameters memory orderParameters = OrderParameters(
		address(alice),
		context.args.zone,
		offerItems,
		considerationItems,
		OrderType.PARTIAL_OPEN,
		block.timestamp, // startTime
		type(uint).max, // endTime
		context.args.zoneHash,
		context.args.salt,
		conduitKey,
		considerationItems.length
	);

	OrderComponents memory orderComponents = getOrderComponents(
		orderParameters,
		context.consideration.getNonce(alice)
	);

	bytes32 orderHash = context.consideration.getOrderHash(orderComponents);

	bytes memory signature = signOrder(
		context.consideration,
		alicePk,
		orderHash
	);

	delete offerItems;
	delete considerationItems;

	AdvancedOrder memory advancedOrder = AdvancedOrder(
		orderParameters,
		1,
		1,
		signature,
		""
	);

	context.consideration.fulfillAdvancedOrder{
		value: 10
	}(advancedOrder, new CriteriaResolver[](0), bytes32(0));
	(, , uint256 totalFilled, uint256 totalSize) = context
		.consideration
		.getOrderStatus(orderHash);
}
