You are here

protected function TermTest::getExpectedCacheContexts in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/jsonapi/tests/src/Functional/TermTest.php \Drupal\Tests\jsonapi\Functional\TermTest::getExpectedCacheContexts()
  2. 9 core/modules/jsonapi/tests/src/Functional/TermTest.php \Drupal\Tests\jsonapi\Functional\TermTest::getExpectedCacheContexts()

File

core/modules/jsonapi/tests/src/Functional/TermTest.php, line 446

Class

TermTest
JSON:API integration test for the "Term" content entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function getExpectedCacheContexts(array $sparse_fieldset = NULL) {
  $contexts = parent::getExpectedCacheContexts($sparse_fieldset);
  if ($sparse_fieldset === NULL || in_array('description', $sparse_fieldset)) {
    $contexts = Cache::mergeContexts($contexts, [
      'languages:language_interface',
      'theme',
    ]);
  }
  return $contexts;
}