[Erp5-report] r31800 gregory - /erp5/trunk/products/ERP5Banking/tests/

nobody at svn.erp5.org nobody at svn.erp5.org
Mon Jan 18 11:34:32 CET 2010


Author: gregory
Date: Mon Jan 18 11:34:31 2010
New Revision: 31800

URL: http://svn.erp5.org?rev=31800&view=rev
Log:
Do not define more than one statement per line.

Modified:
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingAccountingCancellation.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingAccountingDate.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingAvailableInventory.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingBankAccountInventory.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashBalanceRegulation.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashClassification.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashExchange.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashInventory.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashMovement.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashMovementNewNotEmitted.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashSorting.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashToCurrencyPurchase.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashToCurrencySale.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckDeposit.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckPayment.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookDelivery.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookMovement.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookReception.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookUsualCashTransfer.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookVaultTransfer.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingClassificationSurvey.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCounterDate.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCounterRendering.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingDestructionSurvey.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingForeignCashReception.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingInternalMoneyDeposit.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingInternalMoneyPayment.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryDestruction.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryIssue.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryRecall.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryReception.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetarySurvey.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingMoneyDeposit.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingMoneyDepositRendering.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingMutilatedBanknote.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingStopPayment.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingTravelerCheckPurchase.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingTravelerCheckSale.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingUsualCashRendering.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingUsualCashTransfer.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingVaultTransfer.py

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingAccountingCancellation.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingAccountingCancellation.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingAccountingCancellation.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingAccountingCancellation.py [utf8] Mon Jan 18 11:34:31 2010
@@ -228,7 +228,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckInitialInventory ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingAccountingDate.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingAccountingDate.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingAccountingDate.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingAccountingDate.py [utf8] Mon Jan 18 11:34:31 2010
@@ -122,7 +122,8 @@
     self.openAccountingDate(date=self.past_day, site=self.accounting_date_site)
     
   def test_AccountingDate(self, quiet=QUIET, run=RUN_ALL_TEST):
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     sequence_string_1 = 'stepEmptyAccountingDateModule ' \
                         'Tic ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingAvailableInventory.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingAvailableInventory.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingAvailableInventory.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingAvailableInventory.py [utf8] Mon Jan 18 11:34:31 2010
@@ -284,7 +284,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckObjects Tic CheckAccountInitialInventory ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingBankAccountInventory.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingBankAccountInventory.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingBankAccountInventory.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingBankAccountInventory.py [utf8] Mon Jan 18 11:34:31 2010
@@ -177,7 +177,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckInitialInventory ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashBalanceRegulation.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashBalanceRegulation.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashBalanceRegulation.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashBalanceRegulation.py [utf8] Mon Jan 18 11:34:31 2010
@@ -736,7 +736,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckObjects Tic CheckInitialInventory ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashClassification.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashClassification.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashClassification.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashClassification.py [utf8] Mon Jan 18 11:34:31 2010
@@ -703,7 +703,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckObjects Tic CheckInitialInventory CheckSource CheckDestination ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashExchange.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashExchange.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashExchange.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashExchange.py [utf8] Mon Jan 18 11:34:31 2010
@@ -498,7 +498,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckObjects Tic CheckInitialInventoryGuichet_1 ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashInventory.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashInventory.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashInventory.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashInventory.py [utf8] Mon Jan 18 11:34:31 2010
@@ -403,7 +403,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckObjects Tic CheckInitialInventory ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashMovement.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashMovement.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashMovement.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashMovement.py [utf8] Mon Jan 18 11:34:31 2010
@@ -628,7 +628,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckObjects Tic CheckInitialInventory ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashMovementNewNotEmitted.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashMovementNewNotEmitted.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashMovementNewNotEmitted.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashMovementNewNotEmitted.py [utf8] Mon Jan 18 11:34:31 2010
@@ -330,7 +330,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashSorting.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashSorting.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashSorting.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashSorting.py [utf8] Mon Jan 18 11:34:31 2010
@@ -540,7 +540,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckObjects Tic CheckInitialInventory CheckSource CheckDestination ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashToCurrencyPurchase.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashToCurrencyPurchase.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashToCurrencyPurchase.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashToCurrencyPurchase.py [utf8] Mon Jan 18 11:34:31 2010
@@ -449,7 +449,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckObjects Tic CheckInitialInventoryGuichet_Entrante ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashToCurrencySale.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashToCurrencySale.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashToCurrencySale.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashToCurrencySale.py [utf8] Mon Jan 18 11:34:31 2010
@@ -410,7 +410,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckObjects Tic CheckInitialInventoryGuichet_Entrante ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckDeposit.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckDeposit.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckDeposit.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckDeposit.py [utf8] Mon Jan 18 11:34:31 2010
@@ -449,7 +449,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string1 = 'Tic CheckObjects Tic CheckInitialInventory ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckPayment.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckPayment.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckPayment.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckPayment.py [utf8] Mon Jan 18 11:34:31 2010
@@ -529,7 +529,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckObjects Tic CheckInitialInventory ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookDelivery.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookDelivery.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookDelivery.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookDelivery.py [utf8] Mon Jan 18 11:34:31 2010
@@ -281,7 +281,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckObjects Tic CheckInitialCheckbookInventory ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookMovement.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookMovement.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookMovement.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookMovement.py [utf8] Mon Jan 18 11:34:31 2010
@@ -311,7 +311,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckObjects Tic CheckInitialCheckbookInventory ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookReception.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookReception.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookReception.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookReception.py [utf8] Mon Jan 18 11:34:31 2010
@@ -442,7 +442,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckObjects Tic CheckInitialCheckbookInventory ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookUsualCashTransfer.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookUsualCashTransfer.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookUsualCashTransfer.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookUsualCashTransfer.py [utf8] Mon Jan 18 11:34:31 2010
@@ -371,7 +371,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckObjects Tic CheckInitialCheckbookInventory ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookVaultTransfer.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookVaultTransfer.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookVaultTransfer.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookVaultTransfer.py [utf8] Mon Jan 18 11:34:31 2010
@@ -369,7 +369,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckObjects Tic CheckInitialCheckbookInventory ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingClassificationSurvey.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingClassificationSurvey.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingClassificationSurvey.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingClassificationSurvey.py [utf8] Mon Jan 18 11:34:31 2010
@@ -508,7 +508,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckObjects Tic CheckInitialInventory CheckSource CheckDestination ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCounterDate.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCounterDate.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCounterDate.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCounterDate.py [utf8] Mon Jan 18 11:34:31 2010
@@ -108,7 +108,8 @@
     """
       Test that opening a counter date when there is a counter date opened fails.
     """
-    if not run: return
+    if not run:
+      return
     if not quiet:
       message = 'Check open CounterDate twice fails'
       ZopeTestCase._print('\n%s ' % message)
@@ -133,7 +134,8 @@
     """
       Test that opening a counter date on a non-current date fails.
     """
-    if not run: return
+    if not run:
+      return
     if not quiet:
       message = 'Check open CounterDate on non-current date fails'
       ZopeTestCase._print('\n%s ' % message)
@@ -168,7 +170,8 @@
      - year-scoped
      - site-scoped
     """
-    if not run: return
+    if not run:
+      return
     if not quiet:
       message = 'Check CounterDate reference generator behaviour'
       ZopeTestCase._print('\n%s ' % message)
@@ -209,7 +212,8 @@
       Test that opening a counter date when there is a counter date opened
       fails, even when activites are not executed.
     """
-    if not run: return
+    if not run:
+      return
     if not quiet:
       message = 'Check open CounterDate twice without activities fails'
       ZopeTestCase._print('\n%s ' % message)

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCounterRendering.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCounterRendering.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCounterRendering.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCounterRendering.py [utf8] Mon Jan 18 11:34:31 2010
@@ -495,7 +495,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckObjects Tic CheckInitialInventory CheckSource CheckDestination ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingDestructionSurvey.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingDestructionSurvey.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingDestructionSurvey.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingDestructionSurvey.py [utf8] Mon Jan 18 11:34:31 2010
@@ -430,7 +430,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckObjects Tic CheckSourceInitial CheckDestinationInitial ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingForeignCashReception.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingForeignCashReception.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingForeignCashReception.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingForeignCashReception.py [utf8] Mon Jan 18 11:34:31 2010
@@ -356,7 +356,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckObjects Tic ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingInternalMoneyDeposit.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingInternalMoneyDeposit.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingInternalMoneyDeposit.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingInternalMoneyDeposit.py [utf8] Mon Jan 18 11:34:31 2010
@@ -262,7 +262,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckObjects Tic CheckInitialInventory ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingInternalMoneyPayment.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingInternalMoneyPayment.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingInternalMoneyPayment.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingInternalMoneyPayment.py [utf8] Mon Jan 18 11:34:31 2010
@@ -264,7 +264,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckObjects Tic CheckInitialInventory ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryDestruction.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryDestruction.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryDestruction.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryDestruction.py [utf8] Mon Jan 18 11:34:31 2010
@@ -1004,7 +1004,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
 
     # define the sequence for auxiliaiare

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryIssue.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryIssue.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryIssue.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryIssue.py [utf8] Mon Jan 18 11:34:31 2010
@@ -222,7 +222,8 @@
     # get the cash container item from the monetary reception
     cash_container_item_list = [x.getObject() for x in self.simulation_tool.getCurrentTrackingList(node=self.reception.getRelativeUrl())]
     self.assertEqual(len(cash_container_item_list), 2)
-    def reference_sort(a, b):                                                                                   return cmp(a.getReference(), b.getReference())
+    def reference_sort(a, b):
+      return cmp(a.getReference(), b.getReference())
     cash_container_item_list.sort(reference_sort)
 
     # contruct list of dict to create cash container
@@ -449,7 +450,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckObjects  CreateMonetaryReception Tic ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryRecall.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryRecall.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryRecall.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryRecall.py [utf8] Mon Jan 18 11:34:31 2010
@@ -550,7 +550,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckObjects Tic CheckInitialInventory CheckSource CheckDestination ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryReception.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryReception.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryReception.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryReception.py [utf8] Mon Jan 18 11:34:31 2010
@@ -362,7 +362,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckObjects Tic CheckInitialInventory CheckInitialContainerInventory ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetarySurvey.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetarySurvey.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetarySurvey.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetarySurvey.py [utf8] Mon Jan 18 11:34:31 2010
@@ -458,7 +458,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckObjects Tic CheckInitialInventory CheckSource CheckDestination ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingMoneyDeposit.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingMoneyDeposit.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingMoneyDeposit.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingMoneyDeposit.py [utf8] Mon Jan 18 11:34:31 2010
@@ -320,7 +320,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckObjects Tic CheckInitialInventory ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingMoneyDepositRendering.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingMoneyDepositRendering.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingMoneyDepositRendering.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingMoneyDepositRendering.py [utf8] Mon Jan 18 11:34:31 2010
@@ -496,7 +496,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckObjects Tic CheckInitialInventory CheckSource CheckDestination ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingMutilatedBanknote.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingMutilatedBanknote.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingMutilatedBanknote.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingMutilatedBanknote.py [utf8] Mon Jan 18 11:34:31 2010
@@ -828,7 +828,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     # sequence 1 : no payback, mutilated banknotes

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingStopPayment.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingStopPayment.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingStopPayment.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingStopPayment.py [utf8] Mon Jan 18 11:34:31 2010
@@ -309,7 +309,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     # Here we will debit the account

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingTravelerCheckPurchase.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingTravelerCheckPurchase.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingTravelerCheckPurchase.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingTravelerCheckPurchase.py [utf8] Mon Jan 18 11:34:31 2010
@@ -216,7 +216,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckObjects Tic CheckInitialCheckbookInventory ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingTravelerCheckSale.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingTravelerCheckSale.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingTravelerCheckSale.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingTravelerCheckSale.py [utf8] Mon Jan 18 11:34:31 2010
@@ -295,7 +295,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckObjects Tic CheckInitialCheckbookInventory ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingUsualCashRendering.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingUsualCashRendering.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingUsualCashRendering.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingUsualCashRendering.py [utf8] Mon Jan 18 11:34:31 2010
@@ -560,7 +560,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckObjects Tic CheckInitialInventory CheckSource CheckDestination ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingUsualCashTransfer.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingUsualCashTransfer.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingUsualCashTransfer.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingUsualCashTransfer.py [utf8] Mon Jan 18 11:34:31 2010
@@ -496,7 +496,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckObjects Tic CheckInitialInventory CheckSource CheckDestination ' \

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingVaultTransfer.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingVaultTransfer.py?rev=31800&r1=31799&r2=31800&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingVaultTransfer.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingVaultTransfer.py [utf8] Mon Jan 18 11:34:31 2010
@@ -751,7 +751,8 @@
     """
     Define the sequence of step that will be play
     """
-    if not run: return
+    if not run:
+      return
     sequence_list = SequenceList()
     # define the sequence
     sequence_string = 'Tic CheckObjects Tic CheckInitialInventory CheckSource CheckDestination ' \




More information about the Erp5-report mailing list