Commit 45f520e4 authored by Project Update Bot's avatar Project Update Bot Committed by Denis
Browse files

Issue #3297941 by Project Update Bot: Automated Drupal 10 compatibility fixes

parent ee6316c8
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
name: 'reCAPTCHA v3'
type: module
description: 'The reCaptcha V3 module provides integration with Google reCaptcha V3 and CAPTCHA module.'
core: 8.x
core_version_requirement: ^8 || ^9
core_version_requirement: ^9.1 || ^10
package: Spam control
configure: recaptcha_v3.settings
dependencies:
+7 −8
Original line number Diff line number Diff line
@@ -45,16 +45,15 @@ class ReCaptchaActionListBuilderTest extends BrowserTestBase {

    // Sign in as a captcha administrator.
    $this->drupalLogIn($this->createUser(['administer CAPTCHA settings']));
    $this->drupalGet($add_form);

    // Add an action.
    $this->drupalPostForm(
      $add_form, [
    $this->submitForm([
      'label' => 'Test action',
      'id' => 'test_action',
      'threshold' => '.5',
      'challenge' => 'default',
      ],
      'Save');
    ], 'Save');

    // Check that the collection contains the new action.
    $this->drupalGet($collection);