From f739f57a17f65125eaab475e3ff1ab1cfee54f44 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Mon, 13 Jan 2025 15:48:28 +0100 Subject: [PATCH] update custom build ids --- tests/Installer/CKEditorInstallerTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Installer/CKEditorInstallerTest.php b/tests/Installer/CKEditorInstallerTest.php index 50ae8264..001609ae 100644 --- a/tests/Installer/CKEditorInstallerTest.php +++ b/tests/Installer/CKEditorInstallerTest.php @@ -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); } @@ -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