From 968884f18eca3956a2e404b1660e89bccdd518a5 Mon Sep 17 00:00:00 2001 From: zhangshine Date: Mon, 15 Jun 2015 23:43:54 +0800 Subject: [PATCH] typo --- tests/test_templates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_templates.py b/tests/test_templates.py index 17d8940..ecf830c 100644 --- a/tests/test_templates.py +++ b/tests/test_templates.py @@ -45,7 +45,7 @@ class TestSimpleInvoice(unittest.TestCase): doc.set_item_tax_rate(20) # 20% doc.add_transaction(Transaction('Paypal', 111, datetime.now(), 1)) - doc.add_transaction(Transaction('Strip', 222, date.today(), 2)) + doc.add_transaction(Transaction('Stripe', 222, date.today(), 2)) transactions = doc.transactions self.assertEqual(len(transactions), 2)