Skip to content

Commit

Permalink
Merge pull request #112 from hsoberon/10.x-cake5.0
Browse files Browse the repository at this point in the history
fix the testSuccessRegister test
  • Loading branch information
steinkel authored Nov 25, 2024
2 parents 0a1e768 + 321942b commit 98f5ee3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"php": ">=8.1",
"ext-json": "*",
"cakephp/cakephp": "^5.0",
"cakedc/users": "^12.0",
"cakedc/users": "^14.3",
"lcobucci/jwt": "~4.0.0",
"firebase/php-jwt": "^6.3"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public function testSuccessRegister()
'role' => 'user',
];
$data = $result['data'];
unset($data['id'], $data['tos_date']);
unset($data['id'], $data['tos_date'], $data['last_login'], $data['secret_verified']);
$this->assertEquals($expected, $data);
}

Expand Down

0 comments on commit 98f5ee3

Please sign in to comment.