Skip to content

Commit

Permalink
Merge pull request #4926 from mficzel/bugfix/fixPropertyValueCriteria…
Browse files Browse the repository at this point in the history
…MatcherTest

BUGFIX: Fix propertyValueCriteriaMatcherTest
  • Loading branch information
ahaeslich committed Mar 11, 2024
2 parents ffa0c00 + c6cbc1a commit 65bff1f
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,8 @@ class PropertyValueCriteriaMatcherTest extends TestCase
public function setUp(): void
{
$this->serializedPropertyValues = SerializedPropertyValues::fromArray([
'nullProperty' => new SerializedPropertyValue(null, 'null'),
'stringProperty' => new SerializedPropertyValue('foo', 'string'),
'integerProperty' => new SerializedPropertyValue(123, 'int')
'stringProperty' => SerializedPropertyValue::create('foo', 'string'),
'integerProperty' => SerializedPropertyValue::create(123, 'int')
]);

$this->propertyCollection = new PropertyCollection(
Expand Down

0 comments on commit 65bff1f

Please sign in to comment.