Skip to content

Commit

Permalink
Migrate to PHPUnit 10
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-schranz committed Jul 24, 2024
1 parent dbce239 commit c6b18af
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ jobs:
- name: Install and configure PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
php-version: 8.3
extensions: 'imagick'
tools: 'composer:v2'
coverage: none
Expand Down
4 changes: 2 additions & 2 deletions Tests/Functional/Metadata/DynamicFormMetadataLoaderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,8 @@ public function testGetMetadataAttachmentEnglish(): void
$this->assertEquals('number', $attachment->getItems()['options/max']->getType());
$this->assertEquals(6, $attachment->getItems()['options/max']->getColspan());

$this->assertObjectHasAttribute('schema', $attachment);
$this->assertObjectHasAttribute('key', $attachment);
$this->assertTrue(isset($attachment->schema));
$this->assertTrue(isset($attachment->key));
}

public function testGetMetadataAttachmentGerman(): void
Expand Down

0 comments on commit c6b18af

Please sign in to comment.