Skip to content

Commit d8a9745

Browse files
committed
Fix method name
1 parent 0167900 commit d8a9745

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/RedmineExtension/RedmineInstance.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ private function __construct(InstanceRegistration $tracer, RedmineVersion $versi
6060
$this->redmineUrl = 'http://redmine-' . $versionId . ':3000';
6161
$this->apiKey = sha1($versionId . (string) time());
6262

63-
$this->runHeathChecks($version);
63+
$this->runHealthChecks($version);
6464

6565
$this->createDatabaseBackup();
6666
$this->createFilesBackup();
@@ -89,7 +89,7 @@ public function getApiKey(): string
8989
return $this->apiKey;
9090
}
9191

92-
private function runHeathChecks(RedmineVersion $version): void
92+
private function runHealthChecks(RedmineVersion $version): void
9393
{
9494
$ch = curl_init($this->redmineUrl);
9595
curl_setopt($ch, CURLOPT_TIMEOUT, 5);

0 commit comments

Comments
 (0)