Skip to content

Commit 829e78a

Browse files
php cs fixer
1 parent 246a764 commit 829e78a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/PluginFieldsContainerTest.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -654,14 +654,14 @@ public function testShowForTabDisplaysMultipleContainers(): void
654654

655655
// check if the HTML contains both containers
656656
$this->assertStringContainsString(
657-
'id=\'plugin_fields_container_'.$idContainer1.'\'',
657+
'id=\'plugin_fields_container_' . $idContainer1 . '\'',
658658
$html,
659-
"Container 1 (id=$idContainer1) not displayed"
659+
"Container 1 (id=$idContainer1) not displayed",
660660
);
661661
$this->assertStringContainsString(
662-
'id=\'plugin_fields_container_'.$idContainer2.'\'',
662+
'id=\'plugin_fields_container_' . $idContainer2 . '\'',
663663
$html,
664-
"Container 2 (id=$idContainer2) not displayed"
664+
"Container 2 (id=$idContainer2) not displayed",
665665
);
666666
$this->deleteAllContainers();
667667
}
@@ -703,7 +703,7 @@ public function testShowForTabRightsAreEnforced(): void
703703
$this->assertNotSame(
704704
'',
705705
$htmlWithRight,
706-
'Container should be visible for a profile with right.'
706+
'Container should be visible for a profile with right.',
707707
);
708708
// end case 1
709709

@@ -717,7 +717,7 @@ public function testShowForTabRightsAreEnforced(): void
717717
$this->assertSame(
718718
'',
719719
$htmlNoRight,
720-
'Container should not be visible for a profile without right.'
720+
'Container should not be visible for a profile without right.',
721721
);
722722
// end case 2
723723
$this->deleteAllContainers();

0 commit comments

Comments
 (0)