Skip to content

Commit df12ed6

Browse files
committed
chore: fixed unit tests
Change-Id: I4324b4fe3812f8d15b335464ca13ca5fed9ddb5e
1 parent 0a29fe4 commit df12ed6

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

database/seeds/TestSeeder.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ private function createTestUsers(){
235235
'first_name' => 'Sebastian',
236236
'last_name' => 'Marcet',
237237
'email' => 'sebastian@tipit.net',
238-
'password' => '1qaz2wsx',
238+
'password' => '1Qaz2wsx!',
239239
'password_enc' => \Auth\AuthHelper::AlgSHA1_V2_4,
240240
'gender' => 'male',
241241
'address1' => 'Av. Siempre Viva 111',
@@ -256,7 +256,7 @@ private function createTestUsers(){
256256
'first_name' => 'Sebastian',
257257
'last_name' => 'Marcet IDN',
258258
'email' => 'hei@やる.ca',
259-
'password' => '1qaz2wsx',
259+
'password' => '1Qaz2wsx!',
260260
'password_enc' => \Auth\AuthHelper::AlgSHA1_V2_4,
261261
'gender' => 'male',
262262
'address1' => 'Av. Siempre Viva 111',
@@ -277,7 +277,7 @@ private function createTestUsers(){
277277
'first_name' => 'Márton',
278278
'last_name' => 'Kiss',
279279
'email' => 'mkiss@tipit.net',
280-
'password' => '1qaz2wsx',
280+
'password' => '1Qaz2wsx!',
281281
'password_enc' => \Auth\AuthHelper::AlgSHA1_V2_4,
282282
'gender' => 'male',
283283
'address1' => 'Av. Siempre Viva 111',
@@ -298,7 +298,7 @@ private function createTestUsers(){
298298
'first_name' => '',
299299
'last_name' => '金刚',
300300
'email' => 'fujg573@tipit.net',
301-
'password' => '1qaz2wsx',
301+
'password' => '1Qaz2wsx!',
302302
'password_enc' => \Auth\AuthHelper::AlgSHA1_V2_4,
303303
'gender' => 'male',
304304
'address1' => 'Av. Siempre Viva 111',
@@ -319,7 +319,7 @@ private function createTestUsers(){
319319
'first_name' => 'Bharath',
320320
'last_name' => 'Kumar M R',
321321
'email' => 'mrbharathee@tipit.net',
322-
'password' => '1qaz2wsx',
322+
'password' => '1Qaz2wsx!',
323323
'password_enc' => \Auth\AuthHelper::AlgSHA1_V2_4,
324324
'gender' => 'male',
325325
'address1' => 'Av. Siempre Viva 111',
@@ -340,7 +340,7 @@ private function createTestUsers(){
340340
'first_name' => '大塚',
341341
'last_name' => '元央',
342342
'email' => 'yuanying@tipit.net',
343-
'password' => '1qaz2wsx',
343+
'password' => '1Qaz2wsx!',
344344
'password_enc' => \Auth\AuthHelper::AlgSHA1_V2_4,
345345
'gender' => 'male',
346346
'address1' => 'Av. Siempre Viva 111',
@@ -361,7 +361,7 @@ private function createTestUsers(){
361361
'first_name' => 'Ian Y.',
362362
'last_name' => 'Choi',
363363
'email' => 'ianyrchoi@gmail.com',
364-
'password' => '1qaz2wsx',
364+
'password' => '1Qaz2wsx!',
365365
'password_enc' => \Auth\AuthHelper::AlgSHA1_V2_4,
366366
'gender' => 'male',
367367
'address1' => 'Av. Siempre Viva 111',

public/assets/clients.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

start_local_server.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export DOCKER_SCAN_SUGGEST=false
55
docker compose run --rm app composer install
66
docker compose run --rm app php artisan doctrine:migrations:migrate --no-interaction
77
docker compose run --rm app php artisan db:seed --force
8-
docker compose run --rm app php artisan idp:create-super-admin test@test.com 1qaz2wsx!
8+
docker compose run --rm app php artisan idp:create-super-admin test@test.com 1Qaz2wsx!
99
docker compose run --rm app yarn install
1010
docker compose run --rm app yarn build
1111
docker compose up -d

tests/UserApiTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ public function testCreate()
4747
'last_name' => 'test',
4848
'email' => 'test+1@test.com',
4949
'country_iso_code' => 'US',
50-
'password' => '1qaz2wsx!',
51-
'password_confirmation' => '1qaz2wsx!',
50+
'password' => '1Qaz2wsx!',
51+
'password_confirmation' => '1Qaz2wsx!',
5252
'active' => true,
5353
'email_verified' => true,
5454
];

0 commit comments

Comments
 (0)