From 9f0f3b90ebd52ad596ced4c0f1fc9156ae6d1615 Mon Sep 17 00:00:00 2001 From: mmichalek Date: Wed, 21 Sep 2016 10:33:04 -0400 Subject: [PATCH] Fix unit tests --- symmetric-core/src/test/resources/test-services-setup.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/symmetric-core/src/test/resources/test-services-setup.sql b/symmetric-core/src/test/resources/test-services-setup.sql index 95a23d8e68..c8f4be8d22 100644 --- a/symmetric-core/src/test/resources/test-services-setup.sql +++ b/symmetric-core/src/test/resources/test-services-setup.sql @@ -19,8 +19,8 @@ -- under the License. -- -insert into sym_channel (channel_id, processing_order, max_batch_size, max_batch_to_send, contains_big_lob, enabled, max_data_to_route, description) values('testchannel', 1, 50, 50, 1, 1, 0, null); -insert into sym_channel (channel_id, processing_order, max_batch_size, max_batch_to_send, contains_big_lob, enabled, max_data_to_route, description) values('other', 0, 1, 50, 1, 1, 0, null); +insert into sym_channel (channel_id, processing_order, max_batch_size, max_batch_to_send, contains_big_lob, enabled, max_network_kbps, description) values('testchannel', 1, 50, 50, 1, 1, 0.00, null); +insert into sym_channel (channel_id, processing_order, max_batch_size, max_batch_to_send, contains_big_lob, enabled, max_network_kbps, description) values('other', 0, 1, 50, 1, 1, 0.00, null); insert into sym_node_group (node_group_id, description) values ('symmetric','a group representing symmetric configuration'); insert into sym_node_group (node_group_id, description) values ('test-root-group','a test config');