From b510a1a4fc8a552e35f23efc2101f4842643a690 Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Tue, 13 Dec 2022 14:51:57 -0800 Subject: [PATCH] (NFC) PrevNextTest - Fix warning about "@group" When running this test, there are warnings like so: ``` WARNING: Class E2E\Core\PrevNextTest implements EndToEndInterface. It should declare "@group e2e". ``` In PHPUnit docs (https://phpunit.readthedocs.io/en/9.5/annotations.html#group), they encode multiple groups using multiple lines. Following this convention fixes the warning. --- tests/phpunit/E2E/Core/PrevNextTest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/phpunit/E2E/Core/PrevNextTest.php b/tests/phpunit/E2E/Core/PrevNextTest.php index c42373cecfd7..9fa33984b696 100644 --- a/tests/phpunit/E2E/Core/PrevNextTest.php +++ b/tests/phpunit/E2E/Core/PrevNextTest.php @@ -8,7 +8,8 @@ * Check that the active prev-next service behaves as expected. * * @package E2E\Core - * @group e2e ornery + * @group e2e + * @group ornery */ class PrevNextTest extends \CiviEndToEndTestCase {