PHP 8 complains when trying to access closed $mysqli object, not sure how to test this properly

I don't think we need this test very much, anyway
This commit is contained in:
Sergey Tsalkov
2021-06-20 02:09:57 +00:00
parent 42894b70ae
commit bac5503d5a

View File

@@ -28,10 +28,6 @@ class BasicTest extends SimpleTest {
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`name` VARCHAR( 255 ) NULL DEFAULT 'blah'
) ENGINE = InnoDB");
$mysqli = DB::get();
DB::disconnect();
@$this->assert(!$mysqli->server_info);
}
function test_1_5_empty_table() {