- Timestamp:
- 11 Jun 2020, 09:47:30 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/interswitch/tests.py
r15755 r16115 168 168 payment.amount_auth = 60250.0 169 169 success, msg, log = query_interswitch( 170 payment, product_id, host, url, https, mac )171 self.assertEqual('Successful callback received ', msg)170 payment, product_id, host, url, https, mac, False) 171 self.assertEqual('Successful callback received.', msg) 172 172 self.assertTrue(success) 173 173 self.assertTrue( … … 186 186 payment.amount_auth = 1.0 187 187 success, msg, log = query_interswitch( 188 payment, product_id, host, url, https, mac )188 payment, product_id, host, url, https, mac, False) 189 189 self.assertFalse(success) 190 190 self.assertTrue('Unsuccessful callback:' in msg) … … 192 192 payment.amount_auth = 60250.0 193 193 success, msg, log = query_interswitch( 194 payment, product_id, host, url, https, mac )194 payment, product_id, host, url, https, mac, False) 195 195 self.assertEqual('Successful callback received', msg) 196 196 self.assertTrue(success)
Note: See TracChangeset for help on using the changeset viewer.