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/transaction_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/transaction_tests.cpp')
| -rw-r--r-- | src/test/transaction_tests.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/transaction_tests.cpp b/src/test/transaction_tests.cpp index ddff2acd4..9d6a63eb8 100644 --- a/src/test/transaction_tests.cpp +++ b/src/test/transaction_tests.cpp @@ -27,7 +27,7 @@ BOOST_AUTO_TEST_CASE(tx_valid) BOOST_FOREACH(Value& tv, tests) { Array test = tv.get_array(); - string strTest = write_string(tv, false); + string strTest = write_string(tv, raw_utf8); if (test[0].type() == array_type) { if (test.size() != 3 || test[1].type() != str_type || test[2].type() != bool_type) @@ -96,7 +96,7 @@ BOOST_AUTO_TEST_CASE(tx_invalid) BOOST_FOREACH(Value& tv, tests) { Array test = tv.get_array(); - string strTest = write_string(tv, false); + string strTest = write_string(tv, raw_utf8); if (test[0].type() == array_type) { if (test.size() != 3 || test[1].type() != str_type || test[2].type() != bool_type) |