diff --git a/.github/workflows/build-3.x.yml b/.github/workflows/build-3.x.yml index 45b5491..40475d4 100644 --- a/.github/workflows/build-3.x.yml +++ b/.github/workflows/build-3.x.yml @@ -21,8 +21,8 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php-versions: ["8.1"] - drupal-version: ["10.0.x", "10.1.x-dev"] + php-versions: ["8.1", "8.2"] + drupal-version: ["10.0.x", "10.1.x", "10.2.x-dev"] env: DRUPAL_VERSION: ${{ matrix.drupal-version }} diff --git a/tests/src/Functional/JsonldContextGeneratorTest.php b/tests/src/Functional/JsonldContextGeneratorTest.php index 3f9e0f9..c14df32 100644 --- a/tests/src/Functional/JsonldContextGeneratorTest.php +++ b/tests/src/Functional/JsonldContextGeneratorTest.php @@ -42,7 +42,7 @@ public function setUp() : void { // Create a test content type. $test_type = $this->container->get('entity_type.manager')->getStorage('node_type')->create([ 'type' => 'test_type', - 'label' => 'Test Type', + 'name' => 'Test Type', ]); $test_type->save();