From e239669839954b0132de72615790d8a5e8d7143c Mon Sep 17 00:00:00 2001 From: Juan Pablo Vial Date: Thu, 8 May 2025 17:16:55 -0400 Subject: [PATCH] FIX: prueba modelo Customer --- app/tests/unit/src/Model/MediosPago/Toku/CustomerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/tests/unit/src/Model/MediosPago/Toku/CustomerTest.php b/app/tests/unit/src/Model/MediosPago/Toku/CustomerTest.php index 3b968fc..a1fd389 100644 --- a/app/tests/unit/src/Model/MediosPago/Toku/CustomerTest.php +++ b/app/tests/unit/src/Model/MediosPago/Toku/CustomerTest.php @@ -45,7 +45,7 @@ class CustomerTest extends TestCase $expected = json_encode([ 'id' => $id, - 'rut' => implode('', [$persona->rut, $persona->digito]), + 'rut' => implode('', [$persona->rut, strtoupper($persona->digito)]), 'toku_id' => $toku_id ]); $this->assertJsonStringEqualsJsonString($expected, json_encode($customer));