core/modules/rdf/lib/Drupal/rdf/Tests/TrackerAttributesTest.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/core/modules/rdf/lib/Drupal/rdf/Tests/TrackerAttributesTest.php b/core/modules/rdf/lib/Drupal/rdf/Tests/TrackerAttributesTest.php index 072fcc5..eda05ba 100644 --- a/core/modules/rdf/lib/Drupal/rdf/Tests/TrackerAttributesTest.php +++ b/core/modules/rdf/lib/Drupal/rdf/Tests/TrackerAttributesTest.php @@ -132,9 +132,7 @@ function _testBasicTrackerRdfaMarkup(EntityInterface $node) { // Node title. $expected_value = array( 'type' => 'literal', - // The theme layer adds a space after the title a element, and the RDFa - // attribute is on the wrapping td. Adds a space to match this. - 'value' => $node->getTitle() . ' ', + 'value' => $node->getTitle(), 'lang' => 'en', ); $this->assertTrue($graph->hasProperty($node_uri, 'http://purl.org/dc/terms/title', $expected_value), 'Title found in RDF output (dc:title).');