Ignore:
Timestamp:
20 Mar 2012, 14:37:35 (13 years ago)
Author:
Henrik Bettermann
Message:

All fees must be float not int.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.custom/trunk/src/waeup/custom/students/tests/test_browser.py

    r7895 r7928  
    9696    def test_manage_payments(self):
    9797        # Add missing configuration data
    98         self.app['configuration']['2004'].gown_fee = 150
    99         self.app['configuration']['2004'].transfer_fee = 90
    100         self.app['configuration']['2004'].clearance_fee = 120
    101         self.app['configuration']['2004'].maint_fee = 180
     98        self.app['configuration']['2004'].gown_fee = 150.0
     99        self.app['configuration']['2004'].transfer_fee = 90.0
     100        self.app['configuration']['2004'].clearance_fee = 120.0
     101        self.app['configuration']['2004'].maint_fee = 180.0
    102102
    103103        # Managers can add online payment tickets
Note: See TracChangeset for help on using the changeset viewer.