Skip to content

Commit 78d2ead

Browse files
committed
updated failing tests
1 parent be62173 commit 78d2ead

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

tests/FileTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ class FileTest extends AbstractTestCase
77
public function testJpg()
88
{
99
$this->assertEmbed(
10-
'http://melihasweettimes.files.wordpress.com/2011/11/dsc01636.jpg',
10+
'https://www.dreamhost.com/blog/wp-content/uploads/2015/10/DHC_blog-image-01-300x300.jpg',
1111
[
12-
'imageWidth' => 1200,
13-
'imageHeight' => 1600,
12+
'imageWidth' => 300,
13+
'imageHeight' => 300,
1414
'type' => 'photo',
1515
]
1616
);

tests/ImagesBlacklistTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ class ImagesBlacklistTest extends AbstractTestCase
77
public function testPlainText()
88
{
99
$this->assertEmbed(
10-
'http://alistapart.com/article/the-rich-typefaces-get-richer',
10+
'https://alistapart.com/article/the-rich-typefaces-get-richer',
1111
[
12-
'image' => 'http://alistapart.com/d/_made/pix/authors/photos/shoaf-headshot_120_120_c1.jpg',
12+
'image' => 'https://alistapart.com/d/_made/pix/authors/photos/shoaf-headshot_120_120_c1.jpg',
1313
],
1414
[
1515
'images_blacklist' => [
@@ -37,9 +37,9 @@ public function testPlainUrlMatch()
3737
public function testAuthorizedImage()
3838
{
3939
$this->assertEmbed(
40-
'http://alistapart.com/article/the-rich-typefaces-get-richer',
40+
'https://alistapart.com/article/the-rich-typefaces-get-richer',
4141
[
42-
'image' => 'http://alistapart.com/components/assets/img/ala-logo-big.png',
42+
'image' => 'https://alistapart.com/components/assets/img/ala-logo-big.png',
4343
],
4444
[
4545
'images_blacklist' => [

0 commit comments

Comments
 (0)