Skip to content

Commit

Permalink
Fix method name
Browse files Browse the repository at this point in the history
  • Loading branch information
Art4 committed Jul 3, 2024
1 parent 0167900 commit d8a9745
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/RedmineExtension/RedmineInstance.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ private function __construct(InstanceRegistration $tracer, RedmineVersion $versi
$this->redmineUrl = 'http://redmine-' . $versionId . ':3000';
$this->apiKey = sha1($versionId . (string) time());

$this->runHeathChecks($version);
$this->runHealthChecks($version);

$this->createDatabaseBackup();
$this->createFilesBackup();
Expand Down Expand Up @@ -89,7 +89,7 @@ public function getApiKey(): string
return $this->apiKey;
}

private function runHeathChecks(RedmineVersion $version): void
private function runHealthChecks(RedmineVersion $version): void
{
$ch = curl_init($this->redmineUrl);
curl_setopt($ch, CURLOPT_TIMEOUT, 5);
Expand Down

0 comments on commit d8a9745

Please sign in to comment.