Skip to content

Commit 2a58036

Browse files
committed
fix test due to unstable sorting
1 parent bd61428 commit 2a58036

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/PostProcessor/PatternPropertiesAccessorPostProcessorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ public function testModifyingPatternPropertiesViaPopulate(): void
234234
$this->assertEqualsCanonicalizing(['beta' => null, 'b1' => 'Hello'], $object->getPatternProperties('^b'));
235235
$this->assertSame(['c1' => 'World'], $object->getAdditionalProperties());
236236
$this->assertEqualsCanonicalizing(
237-
['a0' => 100, 'a1' => 0, 'a2' => 10, 'b1' => 'Hello', 'c1' => 'World', 'alpha' => null, 'beta' => null],
237+
['c1' => 'World', 'alpha' => null, 'a0' => 100, 'a1' => 0, 'a2' => 10, 'beta' => null, 'b1' => 'Hello'],
238238
$object->toArray()
239239
);
240240

0 commit comments

Comments
 (0)