Fix imports in TestContracts and testLibBytes to be relative. This way they show up correctly in coverage reports

This commit is contained in:
Leonid Logvinov 2019-01-21 16:37:50 +01:00
parent e5c4390489
commit 7e60138e9d
No known key found for this signature in database
GPG Key ID: 0DD294BFDE8C95D4
3 changed files with 11 additions and 2 deletions

View File

@ -1,4 +1,13 @@
[
{
"version": "2.0.1",
"changes": [
{
"note": "Fix imports in `TestConstants` and `TestLibBytes` to be relative. This way they show up correctly in coverage reports",
"pr": "TODO"
}
]
},
{
"version": "2.0.0",
"changes": [

View File

@ -18,7 +18,7 @@
pragma solidity 0.4.24;
import "@0x/contracts-utils/contracts/utils/LibBytes/LibBytes.sol";
import "../../utils/LibBytes/LibBytes.sol";
// solhint-disable max-line-length

View File

@ -18,7 +18,7 @@
pragma solidity 0.4.24;
import "@0x/contracts-utils/contracts/utils/LibBytes/LibBytes.sol";
import "../../utils/LibBytes/LibBytes.sol";
contract TestLibBytes {