Skip to content

Commit

Permalink
minor #269 update custom build ids (xabbuh)
Browse files Browse the repository at this point in the history
This PR was merged into the 2.x branch.

Discussion
----------

update custom build ids

| Q             | A
| ------------- | ---
| Bug fix?      | no
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Fixed tickets |
| License       | MIT

replaces #265

Commits
-------

f739f57 update custom build ids
  • Loading branch information
xabbuh committed Jan 13, 2025
2 parents ec77812 + f739f57 commit 3a082a4
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 3a082a4

Please sign in to comment.