diff --git a/tests/src/Functional/FillPdfFormFormTest.php b/tests/src/Functional/FillPdfFormFormTest.php
index 612ba2aa00bb659300d79c6ddb44750174e54b3f..549d729e102c001e3d9440d1d43b5addc060209c 100644
--- a/tests/src/Functional/FillPdfFormFormTest.php
+++ b/tests/src/Functional/FillPdfFormFormTest.php
@@ -213,10 +213,8 @@ class FillPdfFormFormTest extends FillPdfUploadTestBase {
     $this->drupalPostForm('admin/content/files', ['edit-filename' => 'fillpdf_test_v3.pdf'], 'Filter');
     $this->assertSession()->elementsCount('css', 'table td.views-field.views-field-filename', 1);
     $this->assertSession()->pageTextContains('Permanent');
-    // @todo Past 8.6.x, use File::load($file_id)->createFileUrl() directly.
-    // See https://www.drupal.org/project/fillpdf/issues/3023341.
-    $file_uri = File::load($file_id)->getFileUri();
-    $this->assertSession()->linkByHrefExists(file_create_url($file_uri));
+    $file_url = File::load($file_id)->createFileUrl();
+    $this->assertSession()->linkByHrefExists($file_url);
 
     // Now go check the File usage screen and see if the FillPdfForm is listed
     // with its canonical link.