Skip to content

Commit 1625eaf

Browse files
committed
cs fix
1 parent 1b992e6 commit 1625eaf

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

tests/_support/Database/Seeds/CITestSeeder.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,13 +109,13 @@ public function run(): void
109109
],
110110
'cities' => [
111111
[
112-
'city' => 'Tokyo',
113-
'country' => 'Japan',
112+
'city' => 'Tokyo',
113+
'country' => 'Japan',
114114
'population' => 37_115_035,
115115
],
116116
[
117-
'city' => 'Delhi',
118-
'country' => 'India',
117+
'city' => 'Delhi',
118+
'country' => 'India',
119119
'population' => 33_807_403,
120120
],
121121
],

tests/system/Database/Live/UpsertTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -617,13 +617,13 @@ public function testUpsertBatchCompositeUniqueIndex(): void
617617
'id' => 1,
618618
'city' => 'Tokyo',
619619
'country' => 'Japan',
620-
'population' => 222
620+
'population' => 222,
621621
],
622622
[
623623
'id' => 2,
624624
'city' => 'Delhi',
625625
'country' => 'India',
626-
'population' => 111
626+
'population' => 111,
627627
],
628628
];
629629

0 commit comments

Comments
 (0)