Skip to content

Commit

Permalink
ylem 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
SashaZezulinsky committed Jan 30, 2024
1 parent dce8eed commit bf322ae
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cli/tests/fixtures/ScriptVerify.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity =1.1.0;
pragma solidity >=1.1.0;

import {Unique} from "./unique.sol";

Expand Down
8 changes: 4 additions & 4 deletions cli/tests/it/test_cmd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ sparktest!(warn_no_tests, |prj: TestProject, mut cmd: TestCommand| {
"dummy",
r#"
// SPDX-License-Identifier: UNLICENSED
pragma solidity =1.1.0;
pragma solidity >=1.1.0;
contract Dummy {}
"#,
Expand All @@ -64,7 +64,7 @@ sparktest!(warn_no_tests_match, |prj: TestProject, mut cmd: TestCommand| {
"dummy",
r#"
// SPDX-License-Identifier: UNLICENSED
pragma solidity =1.1.0;
pragma solidity >=1.1.0;
contract Dummy {}
"#,
Expand Down Expand Up @@ -321,7 +321,7 @@ sparktest_init!(can_use_libs_in_multi_fork, |prj: TestProject, mut cmd: TestComm
"Contract.sol",
r#"
// SPDX-License-Identifier: UNLICENSED
pragma solidity =1.1.0;
pragma solidity >=1.1.0;
library Library {
function f(uint256 a, uint256 b) public pure returns (uint256) {
Expand All @@ -347,7 +347,7 @@ contract Contract {
"Contract.t.sol",
r#"
// SPDX-License-Identifier: UNLICENSED
pragma solidity =1.1.0;
pragma solidity >=1.1.0;
import "forge-std/Test.sol";
import "src/Contract.sol";
Expand Down
2 changes: 1 addition & 1 deletion cli/tests/it/verify.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ fn add_verify_target(prj: &TestProject) {
"Verify.sol",
r#"
// SPDX-License-Identifier: UNLICENSED
pragma solidity =1.1.0;
pragma solidity >=1.1.0;
import {Unique} from "./unique.sol";
contract Verify is Unique {
function doStuff() external {}
Expand Down

0 comments on commit bf322ae

Please sign in to comment.