From 215996b0bde9ae5dba932bf7128329837bdc2f76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?ANDRE=20s=C3=A9bastien?= <sandre@afi-sa.fr> Date: Tue, 4 Mar 2025 14:45:18 +0100 Subject: [PATCH] fix master --- .../modules/admin/controllers/IndexControllerTest.php | 2 +- tests/library/Class/BokehVersionTest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/application/modules/admin/controllers/IndexControllerTest.php b/tests/application/modules/admin/controllers/IndexControllerTest.php index 11a5a7a7e74..609d40933fb 100644 --- a/tests/application/modules/admin/controllers/IndexControllerTest.php +++ b/tests/application/modules/admin/controllers/IndexControllerTest.php @@ -240,7 +240,7 @@ class IndexControllerWithGitTest extends Admin_IndexControllerTestCase $this->_next_version = BOKEH_MAJOR_VERSION . '.' . BOKEH_MINOR_VERSION . '.' . (BOKEH_PATCH_VERSION + 1) - . BOKEH_NAMED_VERSION; + . '-' . BOKEH_NAMED_VERSION; $mock_http = $this->mock() ->whenCalled('open_url') diff --git a/tests/library/Class/BokehVersionTest.php b/tests/library/Class/BokehVersionTest.php index dfd3ec6f0e8..f68f7eb0e4d 100644 --- a/tests/library/Class/BokehVersionTest.php +++ b/tests/library/Class/BokehVersionTest.php @@ -35,7 +35,7 @@ class BokehVersionTest extends ModelTestCase $this->_next_version = BOKEH_MAJOR_VERSION . '.' . BOKEH_MINOR_VERSION . '.' . (BOKEH_PATCH_VERSION + 1) - . BOKEH_NAMED_VERSION; + . '-' . BOKEH_NAMED_VERSION; $this->_mock_http = $this->mock() ->whenCalled('open_url') -- GitLab