File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ public function testGooseExtractsExpectedContent()
12
12
$ provider = Provider::instance ('goose ' );
13
13
$ content = $ provider ->extract ('http://www.espn.com/espn/wire/_/section/ncf/id/18398497 ' );
14
14
15
- $ this ->assertInstanceOf (' DayRev\Extractor\ Content' , $ content );
15
+ $ this ->assertInstanceOf (Content::class , $ content );
16
16
$ this ->assertEquals ($ this ->getExpectedGooseExtractedContent (), $ content );
17
17
}
18
18
@@ -21,7 +21,7 @@ public function testEmbedlyExtractsExpectedContent()
21
21
$ provider = Provider::instance ('embedly ' , ['api_key ' => $ this ->config ['embedly_api_key ' ]]);
22
22
$ content = $ provider ->extract ('http://www.espn.com/espn/wire/_/section/ncf/id/18398497 ' );
23
23
24
- $ this ->assertInstanceOf (' DayRev\Extractor\ Content' , $ content );
24
+ $ this ->assertInstanceOf (Content::class , $ content );
25
25
$ this ->assertEquals ($ this ->getExpectedEmbedlyExtractedContent (), $ content );
26
26
}
27
27
You can’t perform that action at this time.
0 commit comments