Skip to content

Commit 3a082a4

Browse files
committed
minor #269 update custom build ids (xabbuh)
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
2 parents ec77812 + f739f57 commit 3a082a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Installer/CKEditorInstallerTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public function testInstallWithRelease(): void
7676

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

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

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

9292
public function testInstallWithCustomBuildWithMissingId(): void

0 commit comments

Comments
 (0)