Skip to content

Commit

Permalink
increase create server timeout, assert it is active
Browse files Browse the repository at this point in the history
  • Loading branch information
k0ka committed Feb 1, 2024
1 parent ce63b7a commit 6122f95
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/sample/Compute/v2/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ protected function createServer(): Server
]
);

$server->waitUntilActive(60);
$server->waitUntilActive(120);
$this->assertEquals('ACTIVE', $server->status);

return $server;
}
Expand Down

0 comments on commit 6122f95

Please sign in to comment.