Skip to content

Commit 1e78397

Browse files
authored
Merge pull request #4273 from oleibman/disable2tests
Disable 2 Tests
2 parents b35de99 + beb0ac8 commit 1e78397

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/PhpSpreadsheetTests/Reader/Html/HtmlImage2Test.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
class HtmlImage2Test extends TestCase
1212
{
13-
public function testCanInsertImageGoodProtocol(): void
13+
public function xtestCanInsertImageGoodProtocol(): void
1414
{
1515
if (getenv('SKIP_URL_IMAGE_TEST') === '1') {
1616
self::markTestSkipped('Skipped due to setting of environment variable');
@@ -31,7 +31,7 @@ public function testCanInsertImageGoodProtocol(): void
3131
self::assertEquals('A1', $drawing->getCoordinates());
3232
}
3333

34-
public function testCantInsertImageNotFound(): void
34+
public function xtestCantInsertImageNotFound(): void
3535
{
3636
if (getenv('SKIP_URL_IMAGE_TEST') === '1') {
3737
self::markTestSkipped('Skipped due to setting of environment variable');

tests/PhpSpreadsheetTests/Reader/Xlsx/URLImageTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
class URLImageTest extends TestCase
1414
{
15-
public function testURLImageSource(): void
15+
public function xtestURLImageSource(): void
1616
{
1717
if (getenv('SKIP_URL_IMAGE_TEST') === '1') {
1818
self::markTestSkipped('Skipped due to setting of environment variable');
@@ -37,7 +37,7 @@ public function testURLImageSource(): void
3737
$spreadsheet->disconnectWorksheets();
3838
}
3939

40-
public function testURLImageSourceNotFound(): void
40+
public function xtestURLImageSourceNotFound(): void
4141
{
4242
if (getenv('SKIP_URL_IMAGE_TEST') === '1') {
4343
self::markTestSkipped('Skipped due to setting of environment variable');

0 commit comments

Comments
 (0)