Unverified Commit 89861b6f authored by Jens Segers's avatar Jens Segers Committed by GitHub

Merge pull request #1850 from denissonleal/feature/not-to-perform-assertion

fix tests without assertions
parents f826130f 49e84827
......@@ -28,6 +28,7 @@ class AuthTest extends TestCase
public function testRemindOld()
{
if (Application::VERSION >= '5.2') {
$this->expectNotToPerformAssertions();
return;
}
......
......@@ -300,6 +300,7 @@ class SchemaTest extends TestCase
$collection->boolean('activated')->default(0);
$collection->integer('user_id')->unsigned();
});
$this->expectNotToPerformAssertions();
}
public function testSparseUnique(): void
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment