Don't rely on getcwd for tests
This commit is contained in:
parent
5bd51f7f81
commit
ca074f436e
@ -63,7 +63,7 @@ $settings = \json_decode(\getenv('MTPROTO_SETTINGS'), true) ?: [];
|
|||||||
* Load MadelineProto
|
* Load MadelineProto
|
||||||
*/
|
*/
|
||||||
echo 'Loading MadelineProto...'.PHP_EOL;
|
echo 'Loading MadelineProto...'.PHP_EOL;
|
||||||
$MadelineProto = new \danog\MadelineProto\API(\getcwd().'/testing.madeline', $settings);
|
$MadelineProto = new \danog\MadelineProto\API(__DIR__.'/../testing.madeline', $settings);
|
||||||
$MadelineProto->async(true);
|
$MadelineProto->async(true);
|
||||||
$MadelineProto->loop(function () use ($MadelineProto) {
|
$MadelineProto->loop(function () use ($MadelineProto) {
|
||||||
yield $MadelineProto->fileGetContents('https://google.com');
|
yield $MadelineProto->fileGetContents('https://google.com');
|
||||||
|
Loading…
Reference in New Issue
Block a user