Skip to content

Commit

Permalink
fix: wrong solc version
Browse files Browse the repository at this point in the history
  • Loading branch information
0xAustrian committed May 3, 2024
1 parent ee85c25 commit 10445e1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/integration/PoolSwap.t.sol
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
pragma solidity ^0.8.4;
pragma solidity 0.8.23;

import {Test} from 'forge-std/Test.sol';

import {IERC20} from 'isolmate/tokens/ERC20.sol';

import {BFactory} from 'contracts/BFactory.sol';
import {BPool} from 'contracts/BPool.sol';
import {IERC20} from 'contracts/BToken.sol';

abstract contract PoolSwapIntegrationTest is Test {
BFactory public factory;
Expand Down Expand Up @@ -73,7 +72,8 @@ contract DirectPoolSwapIntegrationTest is PoolSwapIntegrationTest {
}
}

contract IndirectPoolSwapIntegrationTest is PoolSwapIntegrationTest {
// TODO: remove `abstract` keyword to make the test runnable
abstract contract IndirectPoolSwapIntegrationTest is PoolSwapIntegrationTest {
function _makeSwap() internal override {
vm.startPrank(address(pool));
tokenA.approve(address(swapper), type(uint256).max);
Expand Down

0 comments on commit 10445e1

Please sign in to comment.