Skip to content

Commit

Permalink
Renamed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Silviana Ghita committed Sep 8, 2023
1 parent 680e719 commit ddfcb70
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/test_payins.py
Original file line number Diff line number Diff line change
Expand Up @@ -1124,7 +1124,7 @@ def test_card_preauthorized_deposit_payin(self):
self.assertEqual("PREAUTHORIZED", pay_in.payment_type)
self.assertEqual("PAYIN", pay_in.type)

def test_PayIns_MbwayDirect_Create(self):
def test_PayIns_MbwayWeb_Create(self):
user = BaseTestLive.get_john(True)

# create wallet
Expand Down Expand Up @@ -1155,11 +1155,11 @@ def test_PayIns_MbwayDirect_Create(self):

self.assertEqual("CREATED", result.status)
self.assertEqual("REGULAR", result.nature)
self.assertEqual("DIRECT", result.execution_type)
self.assertEqual("WEB", result.execution_type)
self.assertEqual("MBWAY", result.payment_type)
self.assertEqual("PAYIN", result.type)

def test_PayIns_MultibancoDirect_Create(self):
def test_PayIns_MultibancoWeb_Create(self):
user = BaseTestLive.get_john(True)

# create wallet
Expand Down Expand Up @@ -1196,7 +1196,7 @@ def test_PayIns_MultibancoDirect_Create(self):
self.assertEqual("MULTIBANCO", result.payment_type)
self.assertEqual("PAYIN", result.type)

def test_PayIns_SatispayDirect_Create(self):
def test_PayIns_SatispayWeb_Create(self):
user = BaseTestLive.get_john(True)

# create wallet
Expand Down Expand Up @@ -1233,7 +1233,7 @@ def test_PayIns_SatispayDirect_Create(self):
self.assertEqual("SATISPAY", result.payment_type)
self.assertEqual("PAYIN", result.type)

def test_PayIns_BlikDirect_Create(self):
def test_PayIns_BlikWeb_Create(self):
user = BaseTestLive.get_john(True)

# create wallet
Expand Down

0 comments on commit ddfcb70

Please sign in to comment.