diff --git a/core/modules/content_translation/tests/src/Kernel/Migrate/d6/MigrateTaxonomyTermTranslationTest.php b/core/modules/content_translation/tests/src/Kernel/Migrate/d6/MigrateTaxonomyTermTranslationTest.php index 6f4449880245d5177c14babde4d311f74bf9036a..58149d4119ae6e96a9a87f69ec260c7fad70d131 100644 --- a/core/modules/content_translation/tests/src/Kernel/Migrate/d6/MigrateTaxonomyTermTranslationTest.php +++ b/core/modules/content_translation/tests/src/Kernel/Migrate/d6/MigrateTaxonomyTermTranslationTest.php @@ -84,7 +84,7 @@ protected function assertEntity(int $id, string $expected_language, string $expe $this->assertSame($expected_vid, $entity->bundle()); $this->assertSame($expected_description, $entity->getDescription()); $this->assertSame($expected_format, $entity->getFormat()); - $this->assertSame($expected_weight, (int) $entity->getWeight()); + $this->assertSame($expected_weight, $entity->getWeight()); $this->assertHierarchy($expected_vid, $id, $expected_parents); } diff --git a/core/modules/taxonomy/src/Entity/Term.php b/core/modules/taxonomy/src/Entity/Term.php index 87f428aba600d69749252ed4ee1f0acb61d26c96..5b4d8dbdb952adddac3829d27d0fa5a408cc2e36 100644 --- a/core/modules/taxonomy/src/Entity/Term.php +++ b/core/modules/taxonomy/src/Entity/Term.php @@ -267,7 +267,7 @@ public function setName($name) { * {@inheritdoc} */ public function getWeight() { - return $this->get('weight')->value; + return (int) $this->get('weight')->value; } /** diff --git a/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTermLocalizedTranslationTest.php b/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTermLocalizedTranslationTest.php index c2afbe1f336c2069a71e4a4c007b24fbe41a6b53..21a35daad2a1f43818d2e95fce40d1df2e4283a1 100644 --- a/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTermLocalizedTranslationTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTermLocalizedTranslationTest.php @@ -84,7 +84,7 @@ protected function assertEntity(int $id, string $expected_language, string $expe $this->assertSame($expected_vid, $entity->bundle()); $this->assertSame($expected_description, $entity->getDescription()); $this->assertSame($expected_format, $entity->getFormat()); - $this->assertSame($expected_weight, (int) $entity->getWeight()); + $this->assertSame($expected_weight, $entity->getWeight()); $this->assertHierarchy($expected_vid, $id, $expected_parents); } diff --git a/core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateTaxonomyTermTest.php b/core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateTaxonomyTermTest.php index 39c91d517bba918bd606d41dc3519d96aa697a1d..3a26b1bfca8b9fb2db9df0f3e09de16e9a179741 100644 --- a/core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateTaxonomyTermTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateTaxonomyTermTest.php @@ -90,7 +90,7 @@ protected function assertEntity(int $id, string $expected_language, string $expe $this->assertEquals($expected_vid, $entity->bundle()); $this->assertEquals($expected_description, $entity->getDescription()); $this->assertEquals($expected_format, $entity->getFormat()); - $this->assertEquals($expected_weight, (int) $entity->getWeight()); + $this->assertEquals($expected_weight, $entity->getWeight()); $this->assertEquals($expected_parents, $this->getParentIDs($id)); $this->assertHierarchy($expected_vid, $id, $expected_parents); if (!is_null($expected_field_integer_value)) { diff --git a/core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateTaxonomyTermTranslationTest.php b/core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateTaxonomyTermTranslationTest.php index bd37bf6e319d35b4f984613a92d17ba41bbbed74..f8acceff8dd8a7e306a8f6fb461c25c9eab44ea6 100644 --- a/core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateTaxonomyTermTranslationTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateTaxonomyTermTranslationTest.php @@ -95,7 +95,7 @@ protected function assertEntity(int $id, string $expected_language, string $expe $this->assertSame($expected_vid, $entity->bundle()); $this->assertSame($expected_description, $entity->getDescription()); $this->assertSame($expected_format, $entity->getFormat()); - $this->assertSame($expected_weight, (int) $entity->getWeight()); + $this->assertSame($expected_weight, $entity->getWeight()); $this->assertHierarchy($expected_vid, $id, $expected_parents); } diff --git a/core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateTermLocalizedTranslationTest.php b/core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateTermLocalizedTranslationTest.php index fb0d80b1b5ac266dc2e7ade65c1341ff83facc5d..16f01ab7e26495b57e10f54e6c79c1bb4da8efad 100644 --- a/core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateTermLocalizedTranslationTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateTermLocalizedTranslationTest.php @@ -80,7 +80,7 @@ protected function assertEntity(int $id, string $expected_language, string $expe $this->assertSame($expected_vid, $entity->bundle()); $this->assertSame($expected_description, $entity->getDescription()); $this->assertSame($expected_format, $entity->getFormat()); - $this->assertSame($expected_weight, (int) $entity->getWeight()); + $this->assertSame($expected_weight, $entity->getWeight()); $this->assertHierarchy($expected_vid, $id, $expected_parents); }