From e4cbcbaafc709b9ac89684a0833b7611cd39c098 Mon Sep 17 00:00:00 2001 From: borNfreee Date: Tue, 20 Nov 2018 21:55:34 +0300 Subject: [PATCH] Update XSD url because the old one does not work anymore --- .../TestFramework/PhpUnit/Config/XmlConfigurationHelperTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestFramework/PhpUnit/Config/XmlConfigurationHelperTest.php b/tests/TestFramework/PhpUnit/Config/XmlConfigurationHelperTest.php index c99b0762c..2d1f5fd6b 100644 --- a/tests/TestFramework/PhpUnit/Config/XmlConfigurationHelperTest.php +++ b/tests/TestFramework/PhpUnit/Config/XmlConfigurationHelperTest.php @@ -301,7 +301,7 @@ public function test_it_validates_xml_by_xsd(string $xsdSchema): void public function schemaProvider(): \Generator { - yield 'Remote XSD' => ['https://schema.phpunit.de/6.1/phpunit.xsd']; + yield 'Remote XSD' => ['https://raw.githubusercontent.com/sebastianbergmann/phpunit/7.4/phpunit.xsd']; yield 'Local XSD' => ['./vendor/phpunit/phpunit/phpunit.xsd']; }