remix-tests tests fixes

pull/5370/head
aniket-engg 5 years ago committed by Aniket
parent 63e0db3b86
commit 88ccb524ee
  1. 2
      remix-tests/sol/tests.sol.js
  2. 2
      remix-tests/tests/examples_1/simple_storage.sol
  3. 2
      remix-tests/tests/examples_1/simple_storage_test.sol
  4. 2
      remix-tests/tests/examples_2/simple_storage.sol
  5. 2
      remix-tests/tests/examples_2/simple_storage_test.sol
  6. 2
      remix-tests/tests/examples_3/simple_string.sol
  7. 2
      remix-tests/tests/examples_3/simple_string_test.sol
  8. 2
      remix-tests/tests/examples_4/SafeMath.sol
  9. 2
      remix-tests/tests/examples_4/SafeMathProxy.sol
  10. 2
      remix-tests/tests/examples_4/SafeMath_test.sol
  11. 2
      remix-tests/tests/examples_5/contract/simple_storage.sol
  12. 2
      remix-tests/tests/examples_5/lib/EvenOdd.sol
  13. 2
      remix-tests/tests/examples_5/test/simple_storage_test.sol
  14. 2
      remix-tests/tests/number/number_test.sol

@ -1,5 +1,5 @@
module.exports = `
pragma solidity >=0.4.22 <0.6.0;
pragma solidity >=0.4.22 <0.7.0;
library Assert {

@ -1,4 +1,4 @@
pragma solidity ^0.5.0;
pragma solidity >= 0.5.0 < 0.7.0;
contract SimpleStorage {
uint public storedData;

@ -1,4 +1,4 @@
pragma solidity ^0.5.0;
pragma solidity >= 0.5.0 < 0.7.0;
import "./simple_storage.sol";
contract MyTest {

@ -1,4 +1,4 @@
pragma solidity ^0.5.0;
pragma solidity >= 0.5.0 < 0.7.0;
contract SimpleStorage {
uint public storedData;

@ -1,4 +1,4 @@
pragma solidity ^0.5.0;
pragma solidity >= 0.5.0 < 0.7.0;
import "./simple_storage.sol";
contract MyTest {

@ -1,4 +1,4 @@
pragma solidity ^0.5.0;
pragma solidity >= 0.5.0 < 0.7.0;
contract SimpleString {
string public storedData;

@ -1,4 +1,4 @@
pragma solidity ^0.5.0;
pragma solidity >= 0.5.0 < 0.7.0;
import "./simple_string.sol";
contract StringTest {

@ -1,6 +1,6 @@
// Copyright (c) 2016 Smart Contract Solutions, Inc.
pragma solidity >=0.4.22 <0.6.0;
pragma solidity >=0.4.22 <0.7.0;
/**

@ -1,4 +1,4 @@
pragma solidity >=0.4.22 <0.6.0;
pragma solidity >=0.4.22 <0.7.0;
import "./SafeMath.sol";
/*

@ -1,4 +1,4 @@
pragma solidity >=0.4.22 <0.6.0;
pragma solidity >=0.4.22 <0.7.0;
import "remix_tests.sol";
import "./SafeMath.sol";
import "./SafeMathProxy.sol";

@ -1,4 +1,4 @@
pragma solidity ^0.5.0;
pragma solidity >= 0.5.0 < 0.7.0;
import "../../examples_4/SafeMath.sol";
import "../lib/EvenOdd.sol";

@ -1,4 +1,4 @@
pragma solidity ^0.5.0;
pragma solidity >= 0.5.0 < 0.7.0;
contract EvenOdd {

@ -1,4 +1,4 @@
pragma solidity ^0.5.0;
pragma solidity >= 0.5.0 < 0.7.0;
import "./../contract/simple_storage.sol";
contract StorageResolveTest {

@ -1,4 +1,4 @@
pragma solidity ^0.5.0;
pragma solidity >= 0.5.0 < 0.7.0;
contract IntegerTest {

Loading…
Cancel
Save