fix test setup bug

This commit is contained in:
Dennis Eichhorn 2022-09-30 00:26:28 +02:00
parent 4b03cd91f5
commit 45f64a09aa

View File

@ -61,6 +61,10 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase
self::$con = null;
}
if (self::$con === null) {
return;
}
FtpStorage::with(self::$con);
}