[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SF.net SVN: ledger-smb:[3366] trunk/sql/modules/test/Company.sql
- Subject: SF.net SVN: ledger-smb:[3366] trunk/sql/modules/test/Company.sql
- From: ..hidden..
- Date: Tue, 28 Jun 2011 11:04:44 +0000
Revision: 3366
http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=3366&view=rev
Author: einhverfr
Date: 2011-06-28 11:04:44 +0000 (Tue, 28 Jun 2011)
Log Message:
-----------
Correcting test case failures in Company.sql
Modified Paths:
--------------
trunk/sql/modules/test/Company.sql
Modified: trunk/sql/modules/test/Company.sql
===================================================================
--- trunk/sql/modules/test/Company.sql 2011-06-28 09:36:18 UTC (rev 3365)
+++ trunk/sql/modules/test/Company.sql 2011-06-28 11:04:44 UTC (rev 3366)
@@ -17,15 +17,15 @@
INSERT INTO test_result (test_name, success)
SELECT 'eca_location_save',
eca__location_save(currval('entity_credit_account_id_seq')::int, NULL, 2, 'Test', 'Test',
- NULL, 'Test', 'Test', '12345', 25)
+ NULL, 'Test', 'Test', '12345', 25, NULL)
IS NOT NULL;
INSERT INTO test_result (test_name, success)
SELECT 'eca_location_save returns same id with same args and no in_location_id',
eca__location_save(currval('entity_credit_account_id_seq')::int, NULL, 1, 'Test2', 'Test',
- '', 'Test', 'Test123', '12345', 25) =
+ '', 'Test', 'Test123', '12345', 25, NULL) =
eca__location_save(currval('entity_credit_account_id_seq')::int, NULL, 3, 'Test2', 'Test',
- '', 'Test', 'Test123', '12345', 25);
+ '', 'Test', 'Test123', '12345', 25, NULL);
INSERT INTO test_result (test_name, success)
SELECT 'list_locations', count(*) = 3
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.