From 21840016c50988b3462b07e5a56e9d80047b3b46 Mon Sep 17 00:00:00 2001 From: chriseth Date: Thu, 17 Mar 2022 12:31:50 +0100 Subject: [PATCH] Bump gas value. --- .../semanticTests/functionCall/call_options_overload.sol | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/libsolidity/semanticTests/functionCall/call_options_overload.sol b/test/libsolidity/semanticTests/functionCall/call_options_overload.sol index 0881c5bac..aaa715f4b 100644 --- a/test/libsolidity/semanticTests/functionCall/call_options_overload.sol +++ b/test/libsolidity/semanticTests/functionCall/call_options_overload.sol @@ -3,9 +3,9 @@ contract C { function f(uint x, uint y) external payable returns (uint) { return 2; } function call() public payable returns (uint v, uint x, uint y, uint z) { v = this.f{value: 10}(2); - x = this.f{gas: 1000}(2, 3); - y = this.f{gas: 1000, value: 10}(2, 3); - z = this.f{value: 10, gas: 1000}(2, 3); + x = this.f{gas: 10000}(2, 3); + y = this.f{gas: 10000, value: 10}(2, 3); + z = this.f{value: 10, gas: 10000}(2, 3); } function bal() external returns (uint) { return address(this).balance; } receive() external payable {}