diff options
| author | MarcoFalke <[email protected]> | 2016-09-07 19:36:23 +0200 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2016-09-07 19:36:43 +0200 |
| commit | ec139a5621a9c9f03e1988391a3c7c6c5d849776 (patch) | |
| tree | 3f37f7f9ca3b7b5ef8205c5cbeb4b295d68412be /src | |
| parent | Merge #8594: Do not add random inbound peers to addrman. (diff) | |
| parent | Fix obvious assignment/equality error in test (diff) | |
| download | discoin-ec139a5621a9c9f03e1988391a3c7c6c5d849776.tar.xz discoin-ec139a5621a9c9f03e1988391a3c7c6c5d849776.zip | |
Merge #8673: Trivial: Fix obvious assignment/equality error in test
426e7bc Fix obvious assignment/equality error in test (Jeremy Rubin)
Diffstat (limited to 'src')
| -rw-r--r-- | src/test/arith_uint256_tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/arith_uint256_tests.cpp b/src/test/arith_uint256_tests.cpp index 53ab7e95e..b19d2faea 100644 --- a/src/test/arith_uint256_tests.cpp +++ b/src/test/arith_uint256_tests.cpp @@ -112,7 +112,7 @@ BOOST_AUTO_TEST_CASE( basics ) // constructors, equality, inequality BOOST_CHECK( (R1L & arith_uint256("0xffffffffffffffff")) == arith_uint256(R1LLow64)); BOOST_CHECK(ZeroL == arith_uint256(0)); BOOST_CHECK(OneL == arith_uint256(1)); - BOOST_CHECK(arith_uint256("0xffffffffffffffff") = arith_uint256(0xffffffffffffffffULL)); + BOOST_CHECK(arith_uint256("0xffffffffffffffff") == arith_uint256(0xffffffffffffffffULL)); // Assignment (from base_uint) arith_uint256 tmpL = ~ZeroL; BOOST_CHECK(tmpL == ~ZeroL); |