Skip to content

Commit eba1748

Browse files
committed
fix tests
1 parent 9719845 commit eba1748

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

tests/Feature/LibsqlSchemaBuilderTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
$result = Schema::getTables()[0];
2626

2727
expect($result['name'])->toBe('migrations')
28-
->and($result['schema'])->toBe('main')
2928
->and($result['comment'])->toBeNull()
3029
->and($result['collation'])->toBeNull()
3130
->and($result['engine'])->toBeNull();
@@ -100,7 +99,6 @@
10099
$result = Schema::getTables()[0];
101100

102101
expect($result['name'])->toBe('users')
103-
->and($result['schema'])->toBe('main')
104102
->and($result['comment'])->toBeNull()
105103
->and($result['collation'])->toBeNull()
106104
->and($result['engine'])->toBeNull();
@@ -134,7 +132,6 @@
134132
$view = collect(Schema::getViews())->first();
135133

136134
expect($view['name'])->toBe('foo')
137-
->and($view['schema'])->toBe('main')
138135
->and($view['definition'])->toBe($createSql);
139136

140137
Schema::dropAllViews();

0 commit comments

Comments
 (0)