function test_WideRange_Width_Overrriden() public {
        _initPool(1);

        // Create tokenId with wide range. (width 5000 - tickSpacing 10 -> which makes tick range 50000)
        uint256 tokenId = uint256(0).addUniv3pool(poolId).addLeg(
            0, //leg index
            1, // option ratio
            0, // asset
            0, // isLong
            0, // tokenType
            0, // riskPartner
            300000, // strike
            5000 // width
        );

        // Check the actual width
        int24 width = tokenId.width(0);
        console2.log("width: ", width); //--> 904
    }
