From 33ebf0adcabbfaf979ae730ad08d6010fc659395 Mon Sep 17 00:00:00 2001 From: Alex Skrypnyk Date: Mon, 27 May 2024 07:18:38 +1000 Subject: [PATCH] Fixed test. --- tests/src/Unit/YourExtensionServiceUnitTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/src/Unit/YourExtensionServiceUnitTest.php b/tests/src/Unit/YourExtensionServiceUnitTest.php index f6bfd33..668067c 100644 --- a/tests/src/Unit/YourExtensionServiceUnitTest.php +++ b/tests/src/Unit/YourExtensionServiceUnitTest.php @@ -27,7 +27,7 @@ public function testSanitize(string $input, string $expected) { /** * Provides data for testing the sanitize method. */ - public function dataProviderSanitize(): array { + public static function dataProviderSanitize(): array { return [ ['', ''], ['

This is bold text.

', 'This is bold text.'],