Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
migrate_plus
Commits
8c5e1d30
Commit
8c5e1d30
authored
Jun 11, 2020
by
edycarreyes99
Browse files
Trying to fix phpunit pipeline errors
parent
6b253261
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/src/Kernel/Plugin/migrate_plus/data_parser/SimpleXmlTest.php
View file @
8c5e1d30
...
...
@@ -131,7 +131,7 @@ class SimpleXmlTest extends KernelTestBase {
$url
=
$this
->
path
.
'/tests/data/simple_xml_broken_missing_tag.xml'
;
$this
->
configuration
[
'urls'
][
0
]
=
$url
;
$this
->
expectException
(
MigrateException
::
class
);
$this
->
expectExceptionMessage
RegExp
(
'/^Fatal Error 73/'
);
$this
->
expectExceptionMessage
Matches
(
'/^Fatal Error 73/'
);
$parser
=
$this
->
pluginManager
->
createInstance
(
'simple_xml'
,
$this
->
configuration
);
$parser
->
next
();
}
...
...
@@ -146,7 +146,7 @@ class SimpleXmlTest extends KernelTestBase {
$this
->
configuration
[
'urls'
][
0
]
=
$url
;
$this
->
expectException
(
MigrateException
::
class
);
$this
->
expectExceptionMessage
RegExp
(
'/^Fatal Error 76/'
);
$this
->
expectExceptionMessage
Matches
(
'/^Fatal Error 76/'
);
$parser
=
$this
->
pluginManager
->
createInstance
(
'simple_xml'
,
$this
->
configuration
);
$parser
->
next
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment