Skip to content

Commit 92f2737

Browse files
tabunagithub-actions[bot]
authored andcommitted
Fixed code style
1 parent 8fa82fa commit 92f2737

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/Feature/Platform/RelationsTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)