Skip to content

Commit

Permalink
small test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed May 24, 2016
1 parent b30ef09 commit ed94fb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/budy/test/order.py
Expand Up @@ -79,7 +79,7 @@ def test_basic(self):
self.assertEqual(order.total >= 0.0, True)
self.assertEqual(order.paid, False)
self.assertEqual(order.date, None)
self.assertEqual(order.notification_sent, False)
self.assertEqual(order.notifications, [])

self.assertRaises(appier.AssertionError, order.mark_paid_s)

Expand All @@ -96,7 +96,7 @@ def test_basic(self):
self.assertEqual(order.status, "created")
self.assertEqual(order.paid, False)
self.assertEqual(order.date, None)
self.assertEqual(order.notification_sent, False)
self.assertEqual(order.notifications, [])
self.assertEqual(order.reference.startswith("BD-"), True)

self.assertRaises(appier.AssertionError, order.mark_paid_s)
Expand Down

0 comments on commit ed94fb4

Please sign in to comment.