Commit 49e84827 authored by Denisson Leal's avatar Denisson Leal

fix tests without assertions

parent 045ebf08
...@@ -28,6 +28,7 @@ class AuthTest extends TestCase ...@@ -28,6 +28,7 @@ class AuthTest extends TestCase
public function testRemindOld() public function testRemindOld()
{ {
if (Application::VERSION >= '5.2') { if (Application::VERSION >= '5.2') {
$this->expectNotToPerformAssertions();
return; return;
} }
......
...@@ -300,6 +300,7 @@ class SchemaTest extends TestCase ...@@ -300,6 +300,7 @@ class SchemaTest extends TestCase
$collection->boolean('activated')->default(0); $collection->boolean('activated')->default(0);
$collection->integer('user_id')->unsigned(); $collection->integer('user_id')->unsigned();
}); });
$this->expectNotToPerformAssertions();
} }
public function testSparseUnique(): void 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