Skip to content

Commit

Permalink
OEL-1618: Fixing heading test in featured_media paragraph.
Browse files Browse the repository at this point in the history
  • Loading branch information
escuriola committed Jun 23, 2022
1 parent 73a5a1e commit 3c664ca
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public function testFeaturedMedia(): void {

$this->assertCount(1, $crawler->filter('div.row'));
$this->assertCount(1, $crawler->filter('div.col-12.col-md-4'));
$this->assertCount(0, $crawler->filter('h3'));
$this->assertCount(0, $crawler->filter('h2'));
$this->assertCount(0, $crawler->filter('div.col-12.col-md-6.order-md-1'));
$this->assertCount(0, $crawler->filter('div.col-12.col-md-6.order-md-2'));
$figure = $crawler->filter('figure');
Expand Down Expand Up @@ -162,7 +162,7 @@ public function testFeaturedMedia(): void {

$this->assertCount(1, $crawler->filter('div.row'));
$this->assertCount(1, $crawler->filter('div.col-12.col-md-4'));
$this->assertCount(0, $crawler->filter('h3'));
$this->assertCount(0, $crawler->filter('h2'));
$this->assertCount(0, $crawler->filter('div.col-12.col-md-6.order-md-1'));
$this->assertCount(0, $crawler->filter('div.col-12.col-md-6.order-md-2'));
$this->assertCount(1, $crawler->filter('div.ratio.ratio-16x9'));
Expand All @@ -189,7 +189,7 @@ public function testFeaturedMedia(): void {

$this->assertCount(1, $crawler->filter('div.row'));
$this->assertCount(0, $crawler->filter('div.col-12.col-md-4'));
$this->assertCount(1, $crawler->filter('h3'));
$this->assertCount(1, $crawler->filter('h2'));
$this->assertCount(1, $crawler->filter('div.col-12.col-md-6.order-md-1'));
$this->assertCount(1, $crawler->filter('div.col-12.col-md-6.order-md-2'));
$this->assertCount(1, $crawler->filter('div.ratio.ratio-16x9'));
Expand Down Expand Up @@ -218,7 +218,7 @@ public function testFeaturedMedia(): void {

$this->assertCount(1, $crawler->filter('div.row'));
$this->assertCount(0, $crawler->filter('div.col-12.col-md-4'));
$this->assertCount(1, $crawler->filter('h3'));
$this->assertCount(1, $crawler->filter('h2'));
$this->assertCount(1, $crawler->filter('div.col-12.col-md-6.order-md-1'));
$this->assertCount(1, $crawler->filter('div.col-12.col-md-6.order-md-2'));
$this->assertCount(1, $crawler->filter('div.ratio.ratio-16x9'));
Expand Down Expand Up @@ -252,7 +252,7 @@ public function testFeaturedMedia(): void {

$this->assertCount(1, $crawler->filter('div.row'));
$this->assertCount(0, $crawler->filter('div.col-12.col-md-4'));
$this->assertCount(1, $crawler->filter('h3'));
$this->assertCount(1, $crawler->filter('h2'));
$this->assertCount(1, $crawler->filter('div.col-12.col-md-6.order-md-1'));
$this->assertCount(1, $crawler->filter('div.col-12.col-md-6.order-md-2'));
$this->assertCount(1, $crawler->filter('div.ratio.ratio-16x9'));
Expand Down

0 comments on commit 3c664ca

Please sign in to comment.