Skip to content

Commit

Permalink
update custom build ids
Browse files Browse the repository at this point in the history
  • Loading branch information
xabbuh committed Jan 13, 2025
1 parent 9d4cd4f commit f739f57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Installer/CKEditorInstallerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public function testInstallWithRelease(): void

public function testInstallWithCustomBuild(): void
{
$this->installer->install($options = ['release' => CKEditorInstaller::RELEASE_CUSTOM, 'custom_build_id' => 'ffbb0c61721cb8543bfa54315374592d']);
$this->installer->install($options = ['release' => CKEditorInstaller::RELEASE_CUSTOM, 'custom_build_id' => '1f3be008844363d511af408ce2cb1396']);

$this->assertInstall($options);
}
Expand All @@ -86,7 +86,7 @@ public function testInstallWithCustomBuildWithInvalidVersion(): void
$this->expectException(\RuntimeException::class);
$this->expectExceptionMessageMatches('/Specifying version for custom build is not supported/');

$this->installer->install(['release' => CKEditorInstaller::RELEASE_CUSTOM, 'custom_build_id' => 'ffbb0c61721cb8543bfa54315374592d', 'version' => '4.11.4']);
$this->installer->install(['release' => CKEditorInstaller::RELEASE_CUSTOM, 'custom_build_id' => '1f3be008844363d511af408ce2cb1396', 'version' => '4.11.4']);
}

public function testInstallWithCustomBuildWithMissingId(): void
Expand Down

0 comments on commit f739f57

Please sign in to comment.