File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -62,11 +62,11 @@ public function testScopeModel(array $scope): void
6262 public function testAppendModel (array $ scope ): void
6363 {
6464 $ response = $ this ->getScope ($ scope , 'full ' );
65-
65+
6666 $ json = $ this ->users ->map (function ($ user ) {
6767 return [
6868 'value ' => $ user ->id ,
69- 'label ' => $ user ->name . ' ( ' . $ user ->email . ') ' ,
69+ 'label ' => $ user ->name . ' ( ' . $ user ->email . ') ' ,
7070 ];
7171 })->toArray ();
7272
@@ -129,7 +129,7 @@ public function testSearchColumns()
129129 ->post (route ('platform.systems.relation ' ), $ params );
130130
131131 $ response ->assertJson ([
132- ['value ' => $ user ->id , 'label ' => $ user ->name . ' ( ' . $ user ->email . ') ' ],
132+ ['value ' => $ user ->id , 'label ' => $ user ->name . ' ( ' . $ user ->email . ') ' ],
133133 ]);
134134 }
135135
@@ -159,7 +159,7 @@ public function testSearchColumnsWithScopes()
159159 $ latest_query = array_pop ($ queryLog );
160160
161161 $ response ->assertJson ([
162- ['value ' => $ user ->id , 'label ' => $ user ->name . ' ( ' . $ user ->email . ') ' ],
162+ ['value ' => $ user ->id , 'label ' => $ user ->name . ' ( ' . $ user ->email . ') ' ],
163163 ]);
164164
165165 $ this ->assertContains ('select * from "users" where "name" = ? and ("email" like ? or "id" like ?) limit 10 ' , $ latest_query );
You can’t perform that action at this time.
0 commit comments