Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
automatic_updates
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
automatic_updates
Merge requests
!195
Issue
#3262303
: Always clear stored validation results when modules are installed or uninstalled
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Issue
#3262303
: Always clear stored validation results when modules are installed or uninstalled
issue/automatic_updates-3262303:3262303-always-clear-stored
into
8.x-2.x
Overview
0
Commits
4
Pipelines
0
Changes
1
Merged
Adam G-H
requested to merge
issue/automatic_updates-3262303:3262303-always-clear-stored
into
8.x-2.x
3 years ago
Overview
0
Commits
4
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Viewing commit
a6904450
Show latest version
1 file
+
0
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
a6904450
Remove assert that no longer makes sense
· a6904450
Adam G-H
authored
3 years ago
tests/src/Kernel/ReadinessValidation/ReadinessValidationManagerTest.php
+
0
−
3
Options
@@ -59,9 +59,6 @@ class ReadinessValidationManagerTest extends AutomaticUpdatesKernelTestBase {
// Rebuild the container to trigger the service to be altered.
$kernel
=
$this
->
container
->
get
(
'kernel'
);
$this
->
container
=
$kernel
->
rebuildContainer
();
// Confirm that results will be NULL if the run() is not called again
// because the readiness checker services order has been altered.
$this
->
assertNull
(
$this
->
getResultsFromManager
());
// Confirm that after calling run() the expected results order has changed.
$expected_results_all_reversed
=
array_reverse
(
$expected_results_all
);
$this
->
assertCheckerResultsFromManager
(
$expected_results_all_reversed
,
TRUE
);
Loading