Skip to content

Commit f35891b

Browse files
committed
Skip install file test on Drupal 10.2
1 parent 7add204 commit f35891b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/sut/bar/tests/src/Functional/InstallFileTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ final class InstallFileTest extends BrowserTestBase {
2525
* Test callback.
2626
*/
2727
public function testInstall(): void {
28+
if (\version_compare(\Drupal::VERSION, '10.3', '<')) {
29+
self::markTestSkipped();
30+
}
31+
2832
$permissions = ['administer modules', 'administer site configuration'];
2933
$user = $this->drupalCreateUser($permissions);
3034
$this->drupalLogin($user);

0 commit comments

Comments
 (0)