From 6b769d1e4f2f7a005388ae34d733d081afb58de6 Mon Sep 17 00:00:00 2001
From: Alex Pott <alex.a.pott@googlemail.com>
Date: Mon, 15 Jun 2020 11:17:04 +0100
Subject: [PATCH] Issue #3150661 by cburschka: FileFieldRSSContentTest uses
 XPath incorrectly

---
 .../file/tests/src/Functional/FileFieldRSSContentTest.php  | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/core/modules/file/tests/src/Functional/FileFieldRSSContentTest.php b/core/modules/file/tests/src/Functional/FileFieldRSSContentTest.php
index 0a0400ce25aa..bb46881e4c75 100644
--- a/core/modules/file/tests/src/Functional/FileFieldRSSContentTest.php
+++ b/core/modules/file/tests/src/Functional/FileFieldRSSContentTest.php
@@ -63,14 +63,13 @@ public function testFileFieldRSSContent() {
 
     // Check that the RSS enclosure appears in the RSS feed.
     $this->drupalGet('rss.xml');
-    $uploaded_filename = str_replace('public://', '', $node_file->getFileUri());
     $selector = sprintf(
-      'enclosure[@url="%s"][@length="%s"][@type="%s"]',
-      file_create_url("public://$uploaded_filename", ['absolute' => TRUE]),
+      '//enclosure[@url="%s" and @length="%s" and @type="%s"]',
+      file_create_url($node_file->getFileUri()),
       $node_file->getSize(),
       $node_file->getMimeType()
     );
-    $this->assertNotNull($this->getSession()->getDriver()->find('xpath', $selector), 'File field RSS enclosure is displayed when viewing the RSS feed.');
+    $this->assertNotEmpty($this->getSession()->getDriver()->find($selector), 'File field RSS enclosure is displayed when viewing the RSS feed.');
   }
 
 }
-- 
GitLab