diff options
| author | Jeff Garzik <[email protected]> | 2013-10-22 05:43:38 -0400 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2013-10-22 05:43:38 -0400 |
| commit | 0db9a805bde5050060913462299690020ff798a0 (patch) | |
| tree | eaf77cf294810f8f23c14bbd4a83b13f52304068 /src/test/transaction_tests.cpp | |
| parent | Merge pull request #2740 from constantined/constantined (diff) | |
| download | discoin-0db9a805bde5050060913462299690020ff798a0.tar.xz discoin-0db9a805bde5050060913462299690020ff798a0.zip | |
Revert "Switch to using raw_utf8"
This reverts commit 2ecb7555a9df1e843fd25f588819e4ca1d94b266.
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 d68ead1cd..5dfb67cbe 100644 --- a/src/test/transaction_tests.cpp +++ b/src/test/transaction_tests.cpp @@ -29,7 +29,7 @@ BOOST_AUTO_TEST_CASE(tx_valid) BOOST_FOREACH(Value& tv, tests) { Array test = tv.get_array(); - string strTest = write_string(tv, raw_utf8); + string strTest = write_string(tv, false); if (test[0].type() == array_type) { if (test.size() != 3 || test[1].type() != str_type || test[2].type() != bool_type) @@ -98,7 +98,7 @@ BOOST_AUTO_TEST_CASE(tx_invalid) BOOST_FOREACH(Value& tv, tests) { Array test = tv.get_array(); - string strTest = write_string(tv, raw_utf8); + string strTest = write_string(tv, false); if (test[0].type() == array_type) { if (test.size() != 3 || test[1].type() != str_type || test[2].type() != bool_type) |