Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions contracts/test/unit/utils/Deviation.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,6 @@ contract UnitTestDeviation is DSTest {
);
}

function testWithinDeviationFuzz(int128 x, int128 y) public view {
maxDeviationThresholdBasisPoints.isWithinDeviationThreshold(x, y);
}

function testOutsideDeviation() public {
int256 x = 275000;
int256 y = 577500;
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"test": "forge test --match-contract UnitTest -vvv",
"test:proposal:mainnet": "forge test --fork-url https://eth-mainnet.alchemyapi.io/v2/$MAINNET_ALCHEMY_API_KEY --match-test testProposalMainnet -vvv",
"test:proposal:arbitrum": "forge test --fork-url https://arb-mainnet.g.alchemy.com/v2/$ARBITRUM_ALCHEMY_API_KEY --match-test testProposalArbitrum -vvv",
"test:integration": "FORK_BLOCK=15220981; forge test --fork-url https://eth-mainnet.alchemyapi.io/v2/$MAINNET_ALCHEMY_API_KEY --fork-block-number $FORK_BLOCK --match-contract IntegrationTest -vvv",
"test:integration:arbitrum": "FORK_BLOCK=18348347; forge test --fork-url https://arb-mainnet.g.alchemy.com/v2/$ARBITRUM_ALCHEMY_API_KEY --fork-block-number $FORK_BLOCK --match-contract ArbitrumTest -vvv",
"test:integration": "forge test --fork-url https://eth-mainnet.alchemyapi.io/v2/$MAINNET_ALCHEMY_API_KEY --match-contract IntegrationTest -vvv",
"test:integration:arbitrum": "forge test --fork-url https://arb-mainnet.g.alchemy.com/v2/$ARBITRUM_ALCHEMY_API_KEY --match-contract ArbitrumTest -vvv",
"lint": "npm run lint:ts && npm run lint:sol",
"lint:ts": "eslint --config ./.eslintrc --ignore-path ./.eslintignore --ext .ts,.tsx .",
"lint-all": "eslint --config ./.eslintrc --ignore-path ./.eslintignore --ext .js,.jsx,.ts,.tsx .",
Expand Down