Skip to content

Commit

Permalink
added bigger rescue timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
k0ka committed Jan 17, 2024
1 parent f5ca4e9 commit 6259b67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/sample/Compute/v2/ServerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ public function testRescue(Server $createdServer)
]
);

$createdServer->waitUntil('RESCUE');
$createdServer->waitUntil('RESCUE', 120);
$this->assertEquals('RESCUE', $createdServer->status);
}

Expand All @@ -294,7 +294,7 @@ public function testUnrescue(Server $createdServer)
{
require_once $this->sampleFile('servers/unrescue_server.php', ['{serverId}' => $createdServer->id]);

$createdServer->waitUntil('ACTIVE');
$createdServer->waitUntil('ACTIVE', 120);
$this->assertEquals('ACTIVE', $createdServer->status);
}

Expand Down

0 comments on commit 6259b67

Please sign in to comment.