From f153fee05c8e17a12ba97d1340485700a5e25fde Mon Sep 17 00:00:00 2001 From: Nico Verbruggen Date: Sat, 7 Jan 2023 12:57:45 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=85=20Fix=20broken=20tests=20after=20test?= =?UTF-8?q?=20config=20using=208.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/ui/StartupTest.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ui/StartupTest.swift b/tests/ui/StartupTest.swift index 606aa05..9f99cd5 100644 --- a/tests/ui/StartupTest.swift +++ b/tests/ui/StartupTest.swift @@ -50,7 +50,7 @@ final class StartupTest: UITestCase { final func test_get_warning_about_missing_fpm_symlink() throws { var configuration = TestableConfigurations.working - configuration.filesystem["/opt/homebrew/etc/php/8.1/php-fpm.d/valet-fpm.conf"] = nil + configuration.filesystem["/opt/homebrew/etc/php/8.2/php-fpm.d/valet-fpm.conf"] = nil let app = XCPMApplication() app.withConfiguration(configuration) @@ -71,7 +71,7 @@ final class StartupTest: UITestCase { assertAllExist([ // "Switch to PHP 8.1 (php)" should be visible since it is aliased to `php` - app.menuItems["\("mi_php_switch".localized) 8.1 (php)"], + app.menuItems["\("mi_php_switch".localized) 8.2 (php)"], // We should see the about and quit items app.menuItems["mi_about".localized], app.menuItems["mi_quit".localized]