Changeset 12669


Ignore:
Timestamp:
5 Mar 2015, 13:29:07 (10 years ago)
Author:
uli
Message:

pyflakes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.ikoba/branches/uli-fake-gw-provider/src/waeup/ikoba/payments/tests/test_payment.py

    r12657 r12669  
    136136        result = p1.add_payment_item(item1)
    137137        assert len(p1) == 1  # do not make assumptions about result content
     138        assert isinstance(result, basestring)
    138139
    139140    def test_add_payment_item_multiple(self):
     
    145146        result2 = p1.add_payment_item(item2)
    146147        assert len(p1) == 2  # do not make assumptions about result content
     148        assert isinstance(result1, basestring)
     149        assert isinstance(result2, basestring)
    147150
    148151    def test_amount(self):
Note: See TracChangeset for help on using the changeset viewer.