Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
linkchecker-3247797
Manage
Activity
Members
Labels
Plan
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
Issue forks
linkchecker-3247797
Commits
0f79fc33
Commit
0f79fc33
authored
5 years ago
by
Alexander Hass
Browse files
Options
Downloads
Patches
Plain Diff
Issue
#3060084
: Call to undefined function filter_format_load
parent
59de84cd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/Tests/LinkCheckerInterfaceTest.php
+3
-2
3 additions, 2 deletions
src/Tests/LinkCheckerInterfaceTest.php
src/Tests/LinkCheckerLinkExtractionTest.php
+3
-2
3 additions, 2 deletions
src/Tests/LinkCheckerLinkExtractionTest.php
with
6 additions
and
4 deletions
src/Tests/LinkCheckerInterfaceTest.php
+
3
−
2
View file @
0f79fc33
...
...
@@ -2,8 +2,9 @@
namespace
Drupal\linkchecker\Tests
;
use
Drupal\simpletest\WebTestBase
;
use
Drupal\Core\StringTranslation\StringTranslationTrait
;
use
Drupal\filter\Entity\FilterFormat
;
use
Drupal\simpletest\WebTestBase
;
/**
* Test case for interface tests.
...
...
@@ -31,7 +32,7 @@ class LinkCheckerInterfaceTest extends WebTestBase {
protected
function
setUp
()
{
parent
::
setUp
();
$full_html_format
=
f
ilter
_f
ormat
_
load
(
'full_html'
);
$full_html_format
=
F
ilter
F
ormat
::
load
(
'full_html'
);
$permissions
=
[
// Block permissions.
'administer blocks'
,
...
...
This diff is collapsed.
Click to expand it.
src/Tests/LinkCheckerLinkExtractionTest.php
+
3
−
2
View file @
0f79fc33
...
...
@@ -2,8 +2,9 @@
namespace
Drupal\linkchecker\Tests
;
use
Drupal\simpletest\WebTestBase
;
use
Drupal\Core\StringTranslation\StringTranslationTrait
;
use
Drupal\filter\Entity\FilterFormat
;
use
Drupal\simpletest\WebTestBase
;
/**
* Test Link checker module link extraction functionality.
...
...
@@ -32,7 +33,7 @@ class LinkCheckerLinkExtractionTest extends WebTestBase {
protected
function
setUp
()
{
parent
::
setUp
();
$full_html_format
=
f
ilter
_f
ormat
_
load
(
'full_html'
);
$full_html_format
=
F
ilter
F
ormat
::
load
(
'full_html'
);
$permissions
=
[
'create page content'
,
'edit own page content'
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment