diff options
author | chriseth <chris@ethereum.org> | 2018-12-06 05:11:31 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-12-06 05:51:49 +0800 |
commit | bc6ddbdd09860542061baed8df993cb3dafaa406 (patch) | |
tree | 086050790c74a5d75eed165a545df11f9b554619 /test/libdevcore/CommonData.cpp | |
parent | e8455c2a6d33abbebfe678fdaa1728311838e21a (diff) | |
download | dexon-solidity-bc6ddbdd09860542061baed8df993cb3dafaa406.tar.gz dexon-solidity-bc6ddbdd09860542061baed8df993cb3dafaa406.tar.zst dexon-solidity-bc6ddbdd09860542061baed8df993cb3dafaa406.zip |
Remove `w` parameter for toHex.
Diffstat (limited to 'test/libdevcore/CommonData.cpp')
-rw-r--r-- | test/libdevcore/CommonData.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/libdevcore/CommonData.cpp b/test/libdevcore/CommonData.cpp index 2020ddb0..8da937de 100644 --- a/test/libdevcore/CommonData.cpp +++ b/test/libdevcore/CommonData.cpp @@ -37,7 +37,7 @@ BOOST_AUTO_TEST_SUITE(CommonData) BOOST_AUTO_TEST_CASE(test_to_hex) { - BOOST_CHECK_EQUAL(toHex(fromHex("FF"), 2, HexPrefix::DontAdd, HexCase::Lower), "ff"); + BOOST_CHECK_EQUAL(toHex(fromHex("FF"), HexPrefix::DontAdd, HexCase::Lower), "ff"); } BOOST_AUTO_TEST_CASE(test_format_number) |