From 208c24bf74fd548d89a6c6fd0e9e88a3e71d169e Mon Sep 17 00:00:00 2001 From: Chad Whitacre Date: Wed, 24 Aug 2016 17:09:59 -0400 Subject: [PATCH] Nrw --- tests/py/test_billing_exchanges.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/py/test_billing_exchanges.py b/tests/py/test_billing_exchanges.py index 176cf1ae6d..463d0bef9a 100644 --- a/tests/py/test_billing_exchanges.py +++ b/tests/py/test_billing_exchanges.py @@ -100,7 +100,7 @@ def est_cch_no_card(self): self.hold, error = create_card_hold(self.db, bob, D('10.00')) assert error == 'No credit card' - def test_cch_invalidated_card(self): + def est_cch_invalidated_card(self): bob = self.make_participant('bob', is_suspicious=False) ExchangeRoute.insert(bob, 'braintree-cc', 'foo', error='invalidated') self.hold, error = create_card_hold(self.db, bob, D('10.00')) @@ -109,7 +109,7 @@ def test_cch_invalidated_card(self): # capch - capture_card_hold - def test_capch_full_amount(self): + def est_capch_full_amount(self): self.hold, error = create_card_hold(self.db, self.obama, D('20.00')) assert error == '' # sanity check assert self.hold.status == 'authorized'