diff --git a/core/tests/Drupal/FunctionalTests/Routing/RouteCachingLanguageTest.php b/core/tests/Drupal/FunctionalTests/Routing/RouteCachingLanguageTest.php
index 9e6e8b91af8884a8de42dfda6df8a776dc664414..e9e0f5e7370d24c27a21a05f410e42510253f565 100644
--- a/core/tests/Drupal/FunctionalTests/Routing/RouteCachingLanguageTest.php
+++ b/core/tests/Drupal/FunctionalTests/Routing/RouteCachingLanguageTest.php
@@ -108,12 +108,12 @@ protected function setUp(): void {
 
     // Enable URL language detection and selection and set a prefix for both
     // languages.
-    $edit = ['language_interface[enabled][language-url]' => 1];
-    $this->drupalGet('admin/config/regional/language/detection');
-    $this->submitForm($edit, 'Save settings');
-    $edit = ['prefix[en]' => 'en'];
-    $this->drupalGet('admin/config/regional/language/detection/url');
-    $this->submitForm($edit, 'Save configuration');
+    \Drupal::configFactory()->getEditable('language.types')
+      ->set('negotiation.language_interface.enabled.language_url', 1)
+      ->save();
+    \Drupal::configFactory()->getEditable('language.negotiation')
+      ->set('url.prefixes.en', 'en')
+      ->save();
 
     // Reset the cache after changing the negotiation settings as that changes
     // how links are built.