Ignore:
Timestamp:
21 Mar 2015, 13:22:39 (10 years ago)
Author:
Henrik Bettermann
Message:

Henrik ist mutig.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.ikoba/trunk/src/waeup/ikoba/payments/tests/test_payment.py

    r12800 r12808  
    275275
    276276    def test_payment_id_format(self):
    277         # payment ids have a special format: "PAY_<32 hex digits>"
     277        # payment ids have a special format: "<32 hex digits>"
    278278        id1 = Payment(self.payer, self.payable).payment_id
    279279        assert isinstance(id1, basestring)
    280         assert re.match('PAY_[0-9a-f]{32}', id1)
     280        assert re.match('[0-9a-f]{32}', id1)
    281281
    282282    def test_initial_state_is_unpaid(self):
Note: See TracChangeset for help on using the changeset viewer.