diff options
| author | constantined <[email protected]> | 2013-07-23 04:51:29 +0300 |
|---|---|---|
| committer | constantined <[email protected]> | 2013-07-23 04:51:29 +0300 |
| commit | 2ecb7555a9df1e843fd25f588819e4ca1d94b266 (patch) | |
| tree | 6f6db5baacd8cb224861f5a0104046b8c9f8eb99 /src/test/base58_tests.cpp | |
| parent | JSON Spirit updated to v4.06 (diff) | |
| download | discoin-2ecb7555a9df1e843fd25f588819e4ca1d94b266.tar.xz discoin-2ecb7555a9df1e843fd25f588819e4ca1d94b266.zip | |
Switch to using raw_utf8
Diffstat (limited to 'src/test/base58_tests.cpp')
| -rw-r--r-- | src/test/base58_tests.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/test/base58_tests.cpp b/src/test/base58_tests.cpp index 2741672a8..fb8b74276 100644 --- a/src/test/base58_tests.cpp +++ b/src/test/base58_tests.cpp @@ -19,7 +19,7 @@ BOOST_AUTO_TEST_CASE(base58_EncodeBase58) BOOST_FOREACH(Value& tv, tests) { Array test = tv.get_array(); - std::string strTest = write_string(tv, false); + std::string strTest = write_string(tv, raw_utf8); if (test.size() < 2) // Allow for extra stuff (useful for comments) { BOOST_ERROR("Bad test: " << strTest); @@ -42,7 +42,7 @@ BOOST_AUTO_TEST_CASE(base58_DecodeBase58) BOOST_FOREACH(Value& tv, tests) { Array test = tv.get_array(); - std::string strTest = write_string(tv, false); + std::string strTest = write_string(tv, raw_utf8); if (test.size() < 2) // Allow for extra stuff (useful for comments) { BOOST_ERROR("Bad test: " << strTest); @@ -114,7 +114,7 @@ BOOST_AUTO_TEST_CASE(base58_keys_valid_parse) BOOST_FOREACH(Value& tv, tests) { Array test = tv.get_array(); - std::string strTest = write_string(tv, false); + std::string strTest = write_string(tv, raw_utf8); if (test.size() < 3) // Allow for extra stuff (useful for comments) { BOOST_ERROR("Bad test: " << strTest); @@ -171,7 +171,7 @@ BOOST_AUTO_TEST_CASE(base58_keys_valid_gen) BOOST_FOREACH(Value& tv, tests) { Array test = tv.get_array(); - std::string strTest = write_string(tv, false); + std::string strTest = write_string(tv, raw_utf8); if (test.size() < 3) // Allow for extra stuff (useful for comments) { BOOST_ERROR("Bad test: " << strTest); @@ -240,7 +240,7 @@ BOOST_AUTO_TEST_CASE(base58_keys_invalid) BOOST_FOREACH(Value& tv, tests) { Array test = tv.get_array(); - std::string strTest = write_string(tv, false); + std::string strTest = write_string(tv, raw_utf8); if (test.size() < 1) // Allow for extra stuff (useful for comments) { BOOST_ERROR("Bad test: " << strTest); |