diff --git a/.env b/.env
index 63a8169f64..6aa4640c26 100644
--- a/.env
+++ b/.env
@@ -15,7 +15,7 @@ LOCAL_PORT=8889
 LOCAL_DIR=src
 
 # The PHP version to use. Valid options are 'latest', and '{version}-fpm'.
-LOCAL_PHP=latest
+LOCAL_PHP=8.2-fpm
 
 # Whether or not to enable Xdebug.
 LOCAL_PHP_XDEBUG=false
diff --git a/tests/phpunit/tests/functions.php b/tests/phpunit/tests/functions.php
index 14d2a26315..af08d96319 100644
--- a/tests/phpunit/tests/functions.php
+++ b/tests/phpunit/tests/functions.php
@@ -1420,7 +1420,7 @@ class Tests_Functions extends WP_UnitTestCase {
 
 		$expected = array(
 			'ext'             => 'woff',
-			'type'            => 'application/font-woff',
+			'type'            => 'font/woff',
 			'proper_filename' => false,
 		);
 
@@ -1437,7 +1437,7 @@ class Tests_Functions extends WP_UnitTestCase {
 	}
 
 	public function filter_mime_types_woff( $mimes ) {
-		$mimes['woff'] = 'application/font-woff';
+		$mimes['woff'] = 'font/woff';
 		return $mimes;
 	}
 
