Skip to content

Commit 35bf91c

Browse files
committed
Fix tests
1 parent 277607a commit 35bf91c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/Functional/Type/DefinitionTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ public function testDefinesEnumTypeWithDeprecatedValue(): void
2323
/** @var EnumType $enumTypeWithDeprecatedValue */
2424
$enumTypeWithDeprecatedValue = $this->getType('EnumWithDeprecatedValue');
2525
$value = $enumTypeWithDeprecatedValue->getValues()[0];
26-
$this->assertSame([
27-
'name' => 'foo',
28-
'value' => 'foo',
26+
$this->assertSame([ // @phpstan-ignore-line
2927
'deprecationReason' => 'Just because',
28+
'value' => 'foo',
29+
'name' => 'foo',
3030
], $value->config);
3131
$this->assertTrue($value->isDeprecated());
3232
}

0 commit comments

Comments
 (0)