From 464147909a07b762003cacaa5a8c0477d2e38049 Mon Sep 17 00:00:00 2001 From: pbattu123 Date: Fri, 14 Jun 2019 17:26:42 +0000 Subject: [PATCH] Unit test case fixes and prepared SONs base --- tests/tests/operation_tests.cpp | 3 +++ tests/tests/operation_tests2.cpp | 2 ++ 2 files changed, 5 insertions(+) diff --git a/tests/tests/operation_tests.cpp b/tests/tests/operation_tests.cpp index d6b712ed..50b1fd0c 100644 --- a/tests/tests/operation_tests.cpp +++ b/tests/tests/operation_tests.cpp @@ -1561,6 +1561,7 @@ BOOST_AUTO_TEST_CASE( vesting_balance_create_test ) op.amount = test_asset.amount( 100 ); //op.vesting_seconds = 60*60*24; op.policy = cdd_vesting_policy_initializer{ 60*60*24 }; + op.balance_type == vesting_balance_type::unspecified; // Fee must be non-negative REQUIRE_OP_VALIDATION_SUCCESS( op, fee, core.amount(1) ); @@ -1580,6 +1581,7 @@ BOOST_AUTO_TEST_CASE( vesting_balance_create_test ) op.creator = alice_account.get_id(); op.owner = alice_account.get_id(); + op.balance_type = vesting_balance_type::unspecified; account_id_type nobody = account_id_type(1234); @@ -1650,6 +1652,7 @@ BOOST_AUTO_TEST_CASE( vesting_balance_withdraw_test ) create_op.owner = owner; create_op.amount = amount; create_op.policy = cdd_vesting_policy_initializer(vesting_seconds); + create_op.balance_type = vesting_balance_type::unspecified; tx.operations.push_back( create_op ); set_expiration( db, tx ); diff --git a/tests/tests/operation_tests2.cpp b/tests/tests/operation_tests2.cpp index d6746880..07f93fd9 100644 --- a/tests/tests/operation_tests2.cpp +++ b/tests/tests/operation_tests2.cpp @@ -1316,6 +1316,7 @@ BOOST_AUTO_TEST_CASE(zero_second_vbo) create_op.owner = alice_id; create_op.amount = asset(500); create_op.policy = pinit; + create_op.balance_type = vesting_balance_type::unspecified; signed_transaction create_tx; create_tx.operations.push_back( create_op ); @@ -1399,6 +1400,7 @@ BOOST_AUTO_TEST_CASE( vbo_withdraw_different ) create_op.owner = alice_id; create_op.amount = asset(100, stuff_id); create_op.policy = pinit; + create_op.balance_type = vesting_balance_type::unspecified; signed_transaction create_tx; create_tx.operations.push_back( create_op );