Skip to content

Commit 0c639b3

Browse files
committed
Remove unused employeeNumber column setup from test cases
1 parent a142b99 commit 0c639b3

File tree

3 files changed

+0
-9
lines changed

3 files changed

+0
-9
lines changed

.devcontainer/devcontainer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
"mikestead.dotenv",
1818
"mehedidracula.php-namespace-resolver",
1919
"recca0120.vscode-phpunit",
20-
"formulahendry.terminal",
2120
"junstyle.php-cs-fixer"
2221
],
2322
"settings": {

tests/CustomSchemaTest.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,6 @@ class CustomSchemaTest extends TestCase
2929
protected function setUp(): void
3030
{
3131
parent::setUp();
32-
33-
Schema::table('users', function (Blueprint $table) {
34-
$table->string('employeeNumber')->nullable();
35-
});
3632
}
3733

3834
protected function getEnvironmentSetUp($app)

tests/GroupsTest.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@ class GroupsTest extends TestCase
1212
protected function setUp(): void
1313
{
1414
parent::setUp();
15-
16-
Schema::table('users', function (Blueprint $table) {
17-
$table->string('employeeNumber')->nullable();
18-
});
1915
}
2016

2117
protected function getEnvironmentSetUp($app)

0 commit comments

Comments
 (0)