File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -822,23 +822,23 @@ BOOST_AUTO_TEST_CASE(filename_with_colon)
822822 "language": "Solidity",
823823 "settings": {
824824 "outputSelection": {
825- "http ://github.com/ethereum/solidity/std /StandardToken.sol": {
825+ "https ://github.com/ethereum/solidity/blob/develop/test/compilationTests/gnosis/Tokens /StandardToken.sol": {
826826 "A": [
827827 "abi"
828828 ]
829829 }
830830 }
831831 },
832832 "sources": {
833- "http ://github.com/ethereum/solidity/std /StandardToken.sol": {
833+ "https ://github.com/ethereum/solidity/blob/develop/test/compilationTests/gnosis/Tokens /StandardToken.sol": {
834834 "content": "contract A { }"
835835 }
836836 }
837837 }
838838 )" ;
839839 Json result = compile (input);
840840 BOOST_CHECK (containsAtMostWarnings (result));
841- Json contract = getContractResult (result, " http ://github.com/ethereum/solidity/std /StandardToken.sol" , " A" );
841+ Json contract = getContractResult (result, " https ://github.com/ethereum/solidity/blob/develop/test/compilationTests/gnosis/Tokens /StandardToken.sol" , " A" );
842842 BOOST_CHECK (contract.is_object ());
843843 BOOST_CHECK (contract[" abi" ].is_array ());
844844 BOOST_CHECK_EQUAL (util::jsonCompactPrint (contract[" abi" ]), " []" );
You can’t perform that action at this time.
0 commit comments