Skip to content
Snippets Groups Projects
Verified Commit 6d6c2b79 authored by Kent Richards's avatar Kent Richards :speech_balloon:
Browse files

Issue #2631220: Remove @covers annotations


Per feedback.

Co-authored-by: default avatarznerol <46208-znerol@users.noreply.drupalcode.org>
parent 4d60e0cd
No related branches found
No related tags found
1 merge request!10482Issue #2631220: Apply changes from MR 2210 to 11.x
......@@ -60,8 +60,6 @@ public function testRequest(): void {
*
* The trace should not include `write` or `updateTimestamp` because the
* session data is only read.
*
* @covers \Drupal\session_test\Session\TestSessionHandlerProxy::validateId
*/
public function testRequestReadInvokesValidateId(): void {
$options['query'][MainContentViewSubscriber::WRAPPER_FORMAT] = 'drupal_ajax';
......@@ -99,8 +97,6 @@ public function testRequestReadInvokesValidateId(): void {
*
* The trace should include `write` but not include `updateTimestamp` because
* the session data is modified.
*
* @covers \Drupal\session_test\Session\TestSessionHandlerProxy::validateId
*/
public function testRequestWriteInvokesValidateId(): void {
$options['query'][MainContentViewSubscriber::WRAPPER_FORMAT] = 'drupal_ajax';
......@@ -148,9 +144,6 @@ public function testRequestWriteInvokesValidateId(): void {
* The trace should include `updateTimestamp` but not include `write` because
* the session data is rewritten without modification and `session.lazy_write`
* is enabled.
*
* @covers \Drupal\session_test\Session\TestSessionHandlerProxy::updateTimestamp
* @covers \Drupal\session_test\Session\TestSessionHandlerProxy::validateId
*/
public function testRequestWriteInvokesUpdateTimestamp(): void {
$options['query'][MainContentViewSubscriber::WRAPPER_FORMAT] = 'drupal_ajax';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment