Commit b0364ce7 authored by Rafael Monnerat's avatar Rafael Monnerat

slapos_payzen: Fixup test, the API reports errorCode rather them error_code

parent c64ff63f
...@@ -210,14 +210,14 @@ class TestSlapOSPayzenEvent_processUpdate(SlapOSTestCaseMixinWithAbort): ...@@ -210,14 +210,14 @@ class TestSlapOSPayzenEvent_processUpdate(SlapOSTestCaseMixinWithAbort):
data_kw = { data_kw = {
'status': 'ERROR', 'status': 'ERROR',
'answer':{ 'answer':{
'error_code': "foo", 'errorCode': "foo",
}, },
} }
event.PayzenEvent_processUpdate(data_kw) event.PayzenEvent_processUpdate(data_kw)
self.assertEqual(event.getValidationState(), "confirmed") self.assertEqual(event.getValidationState(), "confirmed")
self.assertEqual( self.assertEqual(
"Unknown errorCode 'foo'", "Unknown errorCode 'foo', message: ",
event.workflow_history['system_event_workflow'][-1]['comment']) event.workflow_history['system_event_workflow'][-1]['comment'])
def test_processUpdate_noTransactionsForOrder(self): def test_processUpdate_noTransactionsForOrder(self):
...@@ -569,7 +569,7 @@ return addToDate(DateTime(), to_add={'day': -1, 'second': -1}).toZone('UTC'), 'f ...@@ -569,7 +569,7 @@ return addToDate(DateTime(), to_add={'day': -1, 'second': -1}).toZone('UTC'), 'f
data_kw = { data_kw = {
"status": "ERROR", "status": "ERROR",
"answer": { "answer": {
"error_code": "PSP_010", "errorCode": "PSP_010",
}, },
} }
...@@ -599,7 +599,7 @@ return addToDate(DateTime(), to_add={'day': -1, 'second': -1}).toZone('UTC'), 'f ...@@ -599,7 +599,7 @@ return addToDate(DateTime(), to_add={'day': -1, 'second': -1}).toZone('UTC'), 'f
data_kw = { data_kw = {
"status": "ERROR", "status": "ERROR",
"answer": { "answer": {
"error_code": "PSP_010", "errorCode": "PSP_010",
}, },
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment