Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd" >
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep, recently I faced same issue with this tests failed to load DTD.
But just curious - would it works if replace https with http?
For hibernate that worked, see #11177.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great point! Seems like replacing them to http would indeed resolve them locally. Addressed in bdd3c27 to keep the validation but change the URL to do it locally

<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
<suite name="API Test Suite" parallel="tests" configfailurepolicy="continue">
<test name="Test A">
<classes>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd" >
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
<suite name="API Test Suite" parallel="tests" configfailurepolicy="continue">
<test name="Test A">
<classes>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd" >
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
<suite name="API Test Suite" parallel="tests" configfailurepolicy="continue">
<test name="Test A">
<classes>
Expand Down
Loading