Commit 826db5f9 authored by Mame Coumba Sall's avatar Mame Coumba Sall

Fix up commit "Modify test since now all mvts are taken into account by stock, check…"

parent e6b80c01
...@@ -1307,11 +1307,11 @@ class TestClosingPeriod(AccountingTestCase): ...@@ -1307,11 +1307,11 @@ class TestClosingPeriod(AccountingTestCase):
"SELECT resource_uid FROM stock WHERE portal_type=" "SELECT resource_uid FROM stock WHERE portal_type="
"'Balance Transaction Line'")[0][0]) "'Balance Transaction Line'")[0][0])
self.assertEquals(self.section.getUid(), q( self.assertEquals(self.section.getUid(), q(
"SELECT section_uid FROM stock WHERE portal_type=" "SELECT section_uid FROM stock WHERE section_uid is not null and portal_type="
"'Balance Transaction Line'")[1][0]) "'Balance Transaction Line'")[0][0])
self.assertEquals(None, q( self.assertEquals(None, q(
"SELECT mirror_section_uid FROM stock WHERE portal_type=" "SELECT mirror_section_uid FROM stock WHERE section_uid is not null and portal_type="
"'Balance Transaction Line'")[1][0]) "'Balance Transaction Line'")[0][0])
self.assertEquals(pl.getUid(), q( self.assertEquals(pl.getUid(), q(
"SELECT node_uid FROM stock WHERE portal_type=" "SELECT node_uid FROM stock WHERE portal_type="
"'Balance Transaction Line'")[0][0]) "'Balance Transaction Line'")[0][0])
...@@ -1443,11 +1443,11 @@ class TestClosingPeriod(AccountingTestCase): ...@@ -1443,11 +1443,11 @@ class TestClosingPeriod(AccountingTestCase):
"SELECT resource_uid FROM stock WHERE portal_type=" "SELECT resource_uid FROM stock WHERE portal_type="
"'Balance Transaction Line'")[0][0]) "'Balance Transaction Line'")[0][0])
self.assertEquals(self.section.getUid(), q( self.assertEquals(self.section.getUid(), q(
"SELECT section_uid FROM stock WHERE portal_type=" "SELECT section_uid FROM stock WHERE section_uid is not null and portal_type="
"'Balance Transaction Line'")[1][0]) "'Balance Transaction Line'")[0][0])
self.assertEquals(None, q( self.assertEquals(None, q(
"SELECT mirror_section_uid FROM stock WHERE portal_type=" "SELECT mirror_section_uid FROM stock WHERE section_uid is not null and portal_type="
"'Balance Transaction Line'")[1][0]) "'Balance Transaction Line'")[0][0])
self.assertEquals(pl.getUid(), q( self.assertEquals(pl.getUid(), q(
"SELECT node_uid FROM stock WHERE portal_type=" "SELECT node_uid FROM stock WHERE portal_type="
"'Balance Transaction Line'")[0][0]) "'Balance Transaction Line'")[0][0])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment