diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-08-08 13:49:42 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-08-28 21:30:14 +0100 |
commit | 3ab2ab3e7691dadf91ef39ed477e12f0144b8278 (patch) | |
tree | 4ca65b04438221bc8398f0ae8b5f40b95abfaad2 /tests/unit_tests | |
parent | rct: avoid the need for the last II element (diff) | |
download | monero-3ab2ab3e7691dadf91ef39ed477e12f0144b8278.tar.xz |
rct: change the simple flag to a type
for future expansion
Diffstat (limited to 'tests/unit_tests')
-rw-r--r-- | tests/unit_tests/serialization.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit_tests/serialization.cpp b/tests/unit_tests/serialization.cpp index 9311ca016..039c26fc0 100644 --- a/tests/unit_tests/serialization.cpp +++ b/tests/unit_tests/serialization.cpp @@ -591,7 +591,7 @@ TEST(Serialization, serializes_ringct_types) ASSERT_TRUE(serialization::dump_binary(s0, blob)); ASSERT_TRUE(serialization::parse_binary(blob, s1)); - ASSERT_TRUE(s0.simple == s1.simple); + ASSERT_TRUE(s0.type == s1.type); ASSERT_TRUE(s0.rangeSigs.size() == s1.rangeSigs.size()); for (size_t n = 0; n < s0.rangeSigs.size(); ++n) { |