From ce86029f6a8553843cd62011b1499b5d6b6c41d3 Mon Sep 17 00:00:00 2001 From: Alejandro Santander Date: Tue, 21 Nov 2017 19:41:45 -0300 Subject: [PATCH] Update solidity version on test helpers --- test/helpers/BasicTokenMock.sol | 2 +- test/helpers/BurnableTokenMock.sol | 2 +- test/helpers/CappedCrowdsaleImpl.sol | 2 +- test/helpers/DayLimitMock.sol | 2 +- test/helpers/DetailedERC20Mock.sol | 2 +- test/helpers/ERC23TokenMock.sol | 2 +- test/helpers/FinalizableCrowdsaleImpl.sol | 2 +- test/helpers/ForceEther.sol | 2 +- test/helpers/HasNoEtherTest.sol | 2 +- test/helpers/InsecureTargetBounty.sol | 2 +- test/helpers/LimitBalanceMock.sol | 2 +- test/helpers/PausableMock.sol | 2 +- test/helpers/PausableTokenMock.sol | 2 +- test/helpers/PullPaymentMock.sol | 2 +- test/helpers/ReentrancyAttack.sol | 2 +- test/helpers/ReentrancyMock.sol | 2 +- test/helpers/RefundableCrowdsaleImpl.sol | 2 +- test/helpers/SafeERC20Helper.sol | 2 +- test/helpers/SafeMathMock.sol | 2 +- test/helpers/SecureTargetBounty.sol | 2 +- test/helpers/SplitPaymentMock.sol | 2 +- test/helpers/StandardTokenMock.sol | 2 +- 22 files changed, 22 insertions(+), 22 deletions(-) diff --git a/test/helpers/BasicTokenMock.sol b/test/helpers/BasicTokenMock.sol index f1a0265f0..6c3f8ef69 100644 --- a/test/helpers/BasicTokenMock.sol +++ b/test/helpers/BasicTokenMock.sol @@ -1,4 +1,4 @@ -pragma solidity ^0.4.11; +pragma solidity ^0.4.18; import '../../contracts/token/BasicToken.sol'; diff --git a/test/helpers/BurnableTokenMock.sol b/test/helpers/BurnableTokenMock.sol index c82a0cac8..ce6bb4c7c 100644 --- a/test/helpers/BurnableTokenMock.sol +++ b/test/helpers/BurnableTokenMock.sol @@ -1,4 +1,4 @@ -pragma solidity ^0.4.13; +pragma solidity ^0.4.18; import '../../contracts/token/BurnableToken.sol'; diff --git a/test/helpers/CappedCrowdsaleImpl.sol b/test/helpers/CappedCrowdsaleImpl.sol index 0f65471d0..3c9692ed8 100644 --- a/test/helpers/CappedCrowdsaleImpl.sol +++ b/test/helpers/CappedCrowdsaleImpl.sol @@ -1,4 +1,4 @@ -pragma solidity ^0.4.11; +pragma solidity ^0.4.18; import '../../contracts/crowdsale/CappedCrowdsale.sol'; diff --git a/test/helpers/DayLimitMock.sol b/test/helpers/DayLimitMock.sol index 636b5394f..83accc7a5 100644 --- a/test/helpers/DayLimitMock.sol +++ b/test/helpers/DayLimitMock.sol @@ -1,4 +1,4 @@ -pragma solidity ^0.4.11; +pragma solidity ^0.4.18; import "../../contracts/DayLimit.sol"; contract DayLimitMock is DayLimit { diff --git a/test/helpers/DetailedERC20Mock.sol b/test/helpers/DetailedERC20Mock.sol index 5396ee4ef..f1f5cbaca 100644 --- a/test/helpers/DetailedERC20Mock.sol +++ b/test/helpers/DetailedERC20Mock.sol @@ -1,4 +1,4 @@ -pragma solidity ^0.4.11; +pragma solidity ^0.4.18; import '../../contracts/token/StandardToken.sol'; import '../../contracts/token/DetailedERC20.sol'; diff --git a/test/helpers/ERC23TokenMock.sol b/test/helpers/ERC23TokenMock.sol index 5773e3f56..b06adffdc 100644 --- a/test/helpers/ERC23TokenMock.sol +++ b/test/helpers/ERC23TokenMock.sol @@ -1,4 +1,4 @@ -pragma solidity ^0.4.11; +pragma solidity ^0.4.18; import '../../contracts/token/BasicToken.sol'; diff --git a/test/helpers/FinalizableCrowdsaleImpl.sol b/test/helpers/FinalizableCrowdsaleImpl.sol index 3c3279c1b..c16ab4634 100644 --- a/test/helpers/FinalizableCrowdsaleImpl.sol +++ b/test/helpers/FinalizableCrowdsaleImpl.sol @@ -1,4 +1,4 @@ -pragma solidity ^0.4.11; +pragma solidity ^0.4.18; import '../../contracts/crowdsale/FinalizableCrowdsale.sol'; diff --git a/test/helpers/ForceEther.sol b/test/helpers/ForceEther.sol index 4d25ac4a2..eed268f3c 100644 --- a/test/helpers/ForceEther.sol +++ b/test/helpers/ForceEther.sol @@ -1,4 +1,4 @@ -pragma solidity ^0.4.11; +pragma solidity ^0.4.18; // @title Force Ether into a contract. // @notice even diff --git a/test/helpers/HasNoEtherTest.sol b/test/helpers/HasNoEtherTest.sol index 9f320c06f..135e07d04 100644 --- a/test/helpers/HasNoEtherTest.sol +++ b/test/helpers/HasNoEtherTest.sol @@ -1,4 +1,4 @@ -pragma solidity ^0.4.11; +pragma solidity ^0.4.18; import "../../contracts/ownership/HasNoEther.sol"; diff --git a/test/helpers/InsecureTargetBounty.sol b/test/helpers/InsecureTargetBounty.sol index 3ac46a24e..e39b90a01 100644 --- a/test/helpers/InsecureTargetBounty.sol +++ b/test/helpers/InsecureTargetBounty.sol @@ -1,4 +1,4 @@ -pragma solidity ^0.4.11; +pragma solidity ^0.4.18; import {Bounty, Target} from "../../contracts/Bounty.sol"; diff --git a/test/helpers/LimitBalanceMock.sol b/test/helpers/LimitBalanceMock.sol index d38914ecd..2a1b72375 100644 --- a/test/helpers/LimitBalanceMock.sol +++ b/test/helpers/LimitBalanceMock.sol @@ -1,4 +1,4 @@ -pragma solidity ^0.4.11; +pragma solidity ^0.4.18; import '../../contracts/LimitBalance.sol'; diff --git a/test/helpers/PausableMock.sol b/test/helpers/PausableMock.sol index 97a5f28ea..59a6b3dd0 100644 --- a/test/helpers/PausableMock.sol +++ b/test/helpers/PausableMock.sol @@ -1,4 +1,4 @@ -pragma solidity ^0.4.11; +pragma solidity ^0.4.18; import '../../contracts/lifecycle/Pausable.sol'; diff --git a/test/helpers/PausableTokenMock.sol b/test/helpers/PausableTokenMock.sol index 360402151..54e2cee14 100644 --- a/test/helpers/PausableTokenMock.sol +++ b/test/helpers/PausableTokenMock.sol @@ -1,4 +1,4 @@ -pragma solidity ^0.4.11; +pragma solidity ^0.4.18; import '../../contracts/token/PausableToken.sol'; diff --git a/test/helpers/PullPaymentMock.sol b/test/helpers/PullPaymentMock.sol index 99800e946..93689ed8a 100644 --- a/test/helpers/PullPaymentMock.sol +++ b/test/helpers/PullPaymentMock.sol @@ -1,4 +1,4 @@ -pragma solidity ^0.4.11; +pragma solidity ^0.4.18; import '../../contracts/payment/PullPayment.sol'; diff --git a/test/helpers/ReentrancyAttack.sol b/test/helpers/ReentrancyAttack.sol index 37b5cffd7..091392b0d 100644 --- a/test/helpers/ReentrancyAttack.sol +++ b/test/helpers/ReentrancyAttack.sol @@ -1,4 +1,4 @@ -pragma solidity ^0.4.11; +pragma solidity ^0.4.18; contract ReentrancyAttack { diff --git a/test/helpers/ReentrancyMock.sol b/test/helpers/ReentrancyMock.sol index 63162fd92..ecf45fef4 100644 --- a/test/helpers/ReentrancyMock.sol +++ b/test/helpers/ReentrancyMock.sol @@ -1,4 +1,4 @@ -pragma solidity ^0.4.11; +pragma solidity ^0.4.18; import '../../contracts/ReentrancyGuard.sol'; import './ReentrancyAttack.sol'; diff --git a/test/helpers/RefundableCrowdsaleImpl.sol b/test/helpers/RefundableCrowdsaleImpl.sol index 1dccc8d25..f11200ff1 100644 --- a/test/helpers/RefundableCrowdsaleImpl.sol +++ b/test/helpers/RefundableCrowdsaleImpl.sol @@ -1,4 +1,4 @@ -pragma solidity ^0.4.11; +pragma solidity ^0.4.18; import '../../contracts/crowdsale/RefundableCrowdsale.sol'; diff --git a/test/helpers/SafeERC20Helper.sol b/test/helpers/SafeERC20Helper.sol index 693af0934..abe73fc68 100644 --- a/test/helpers/SafeERC20Helper.sol +++ b/test/helpers/SafeERC20Helper.sol @@ -1,4 +1,4 @@ -pragma solidity ^0.4.11; +pragma solidity ^0.4.18; import '../../contracts/token/ERC20.sol'; import '../../contracts/token/SafeERC20.sol'; diff --git a/test/helpers/SafeMathMock.sol b/test/helpers/SafeMathMock.sol index 5a20aefe8..0b94fb926 100644 --- a/test/helpers/SafeMathMock.sol +++ b/test/helpers/SafeMathMock.sol @@ -1,4 +1,4 @@ -pragma solidity ^0.4.11; +pragma solidity ^0.4.18; import '../../contracts/math/SafeMath.sol'; diff --git a/test/helpers/SecureTargetBounty.sol b/test/helpers/SecureTargetBounty.sol index 1f370246f..0d80e9c13 100644 --- a/test/helpers/SecureTargetBounty.sol +++ b/test/helpers/SecureTargetBounty.sol @@ -1,4 +1,4 @@ -pragma solidity ^0.4.11; +pragma solidity ^0.4.18; import {Bounty, Target} from "../../contracts/Bounty.sol"; diff --git a/test/helpers/SplitPaymentMock.sol b/test/helpers/SplitPaymentMock.sol index 0f347a266..6df502a4e 100644 --- a/test/helpers/SplitPaymentMock.sol +++ b/test/helpers/SplitPaymentMock.sol @@ -1,4 +1,4 @@ -pragma solidity ^0.4.11; +pragma solidity ^0.4.18; import '../../contracts/payment/SplitPayment.sol'; diff --git a/test/helpers/StandardTokenMock.sol b/test/helpers/StandardTokenMock.sol index 6425d2f9e..2189edce8 100644 --- a/test/helpers/StandardTokenMock.sol +++ b/test/helpers/StandardTokenMock.sol @@ -1,4 +1,4 @@ -pragma solidity ^0.4.11; +pragma solidity ^0.4.18; import '../../contracts/token/StandardToken.sol';