Skip to content

Commit 688dc6b

Browse files
committed
fix(cs): [ci-review] pint 🐛
1 parent ed67721 commit 688dc6b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

tests/Feature/SQLLoaderTest.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
test('it can detect FILLER and DATE columns', function () {
127127
Process::fake();
128128

129-
$loader = new SQLLoader();
129+
$loader = new SQLLoader;
130130
$loader->inFile(__DIR__.'/../data/filler.dat')
131131
->as('users.ctl')
132132
->withHeaders()
@@ -151,7 +151,7 @@
151151
test('it can detect BOOLEAN columns and set the default value if empty', function () {
152152
Process::fake();
153153

154-
$loader = new SQLLoader();
154+
$loader = new SQLLoader;
155155
$loader->inFile(__DIR__.'/../data/filler.dat')
156156
->as('users.ctl')
157157
->withHeaders()
@@ -171,7 +171,7 @@
171171
test('it can detect BOOLEAN columns and set the default value to 0 if no default was defined', function () {
172172
Process::fake();
173173

174-
$loader = new SQLLoader();
174+
$loader = new SQLLoader;
175175
$loader->inFile(__DIR__.'/../data/filler.dat')
176176
->as('users.ctl')
177177
->withHeaders()
@@ -191,7 +191,7 @@
191191
test('it accepts withHeader on input file with wildcard', function () {
192192
Process::fake();
193193

194-
$loader = new SQLLoader();
194+
$loader = new SQLLoader;
195195
$path = __DIR__.'/../data/wildcard/*.dat';
196196
$loader->inFile($path)
197197
->as('users.ctl')
@@ -215,7 +215,7 @@
215215
test('it can set the default date format', function () {
216216
Process::fake();
217217

218-
$loader = new SQLLoader();
218+
$loader = new SQLLoader;
219219
$loader->inFile(__DIR__.'/../data/filler.dat')
220220
->as('users.ctl')
221221
->dateFormat('YYYY-MM-DD')
@@ -235,7 +235,7 @@
235235
test('it can process constants columns', function () {
236236
Process::fake();
237237

238-
$loader = new SQLLoader();
238+
$loader = new SQLLoader;
239239
$loader->inFile(__DIR__.'/../data/users.dat')
240240
->as('users.ctl')
241241
->withHeaders()
@@ -262,7 +262,7 @@
262262
test('it can set input file os file proc clause', function () {
263263
Process::fake();
264264

265-
$loader = new SQLLoader();
265+
$loader = new SQLLoader;
266266
$loader->inFile(__DIR__.'/../data/users.dat', osFileProcClause: 'os file proc')
267267
->as('users.ctl')
268268
->withHeaders()

0 commit comments

Comments
 (0)