Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Merge requests
!763
An error occurred while fetching the assigned milestone of the selected merge_request.
Issue
#3217717
: Replace usages of the at() matcher, that is deprecated
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Issue
#3217717
: Replace usages of the at() matcher, that is deprecated
issue/drupal-3217717:3217717-replace-usages-of
into
9.3.x
Overview
14
Commits
11
Pipelines
0
Changes
50
Closed
mondrake
requested to merge
issue/drupal-3217717:3217717-replace-usages-of
into
9.3.x
3 years ago
Overview
11
Commits
11
Pipelines
0
Changes
50
Expand
0
0
Merge request reports
Compare
9.3.x
version 14
150833ca
3 years ago
version 13
db6118fe
3 years ago
version 12
106e8659
3 years ago
version 11
38a2d302
3 years ago
version 10
244c0ab8
3 years ago
version 9
9747595a
3 years ago
version 8
6df0c185
3 years ago
version 7
774eb505
3 years ago
version 6
ca18671f
3 years ago
version 5
9b11961b
3 years ago
version 4
a73a8699
3 years ago
version 3
3e7a410d
3 years ago
version 2
5ecb6809
3 years ago
version 1
bf92dab8
3 years ago
9.3.x (base)
and
latest version
latest version
5f767559
11 commits,
3 years ago
version 14
150833ca
15 commits,
3 years ago
version 13
db6118fe
14 commits,
3 years ago
version 12
106e8659
13 commits,
3 years ago
version 11
38a2d302
12 commits,
3 years ago
version 10
244c0ab8
11 commits,
3 years ago
version 9
9747595a
10 commits,
3 years ago
version 8
6df0c185
9 commits,
3 years ago
version 7
774eb505
8 commits,
3 years ago
version 6
ca18671f
7 commits,
3 years ago
version 5
9b11961b
6 commits,
3 years ago
version 4
a73a8699
5 commits,
3 years ago
version 3
3e7a410d
4 commits,
3 years ago
version 2
5ecb6809
2 commits,
3 years ago
version 1
bf92dab8
1 commit,
3 years ago
50 files
+
665
−
958
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
50
Search (e.g. *.vue) (Ctrl+P)
core/modules/aggregator/tests/src/Unit/Plugin/AggregatorPluginSettingsBaseTest.php
+
3
−
3
Options
@@ -87,14 +87,14 @@ public function testSettingsForm() {
->
setMethods
([
'buildConfigurationForm'
,
'validateConfigurationForm'
,
'submitConfigurationForm'
])
->
setConstructorArgs
([[],
'aggregator_test'
,
[
'description'
=>
''
],
$this
->
configFactory
])
->
getMock
();
$test_processor
->
expects
(
$this
->
at
(
0
))
$test_processor
->
expects
(
$this
->
once
(
))
->
method
(
'buildConfigurationForm'
)
->
with
(
$this
->
anything
(),
$form_state
)
->
will
(
$this
->
returnArgument
(
0
));
$test_processor
->
expects
(
$this
->
at
(
1
))
$test_processor
->
expects
(
$this
->
once
(
))
->
method
(
'validateConfigurationForm'
)
->
with
(
$this
->
anything
(),
$form_state
);
$test_processor
->
expects
(
$this
->
at
(
2
))
$test_processor
->
expects
(
$this
->
once
(
))
->
method
(
'submitConfigurationForm'
)
->
with
(
$this
->
anything
(),
$form_state
);
Loading