tests/src/Functional/TermTest.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/src/Functional/TermTest.php b/tests/src/Functional/TermTest.php index 27c14c0..2e0034a 100644 --- a/tests/src/Functional/TermTest.php +++ b/tests/src/Functional/TermTest.php @@ -338,6 +338,11 @@ class TermTest extends ResourceTestBase { * @dataProvider providerTestGetIndividualTermWithParent */ public function testGetIndividualTermWithParent(array $parent_term_ids) { + if (floatval(\Drupal::VERSION) < 8.6) { + $this->markTestSkipped('The "parent" field on terms is only available for normalization in Drupal 8.6 and later.'); + return; + } + // Create all possible parent terms. Term::create(['vid' => Vocabulary::load('camelids')->id()]) ->setName('Lamoids')