From 9cdc9367ccb8eb79780b0f6fcb966ea6709834d8 Mon Sep 17 00:00:00 2001 From: Noah Allen Date: Mon, 4 Mar 2024 12:53:01 -0800 Subject: [PATCH] Use skipped test instead of true assertion --- tests/files/test-vip-filesystem.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/files/test-vip-filesystem.php b/tests/files/test-vip-filesystem.php index 9c6938e5962..496b0e8d63d 100644 --- a/tests/files/test-vip-filesystem.php +++ b/tests/files/test-vip-filesystem.php @@ -390,7 +390,7 @@ public function data_get_transport_for_path(): iterable { public function test_wp_font_dir() { // Only available in WP 6.5 and newer: if ( ! function_exists( '\wp_get_font_dir' ) ) { - $this->assertEquals( true, true ); + $this->markTestSkipped( 'test_wp_font_dir does not need to run for WP < 6.5.' ); return; }