Skip to content

Commit

Permalink
BUGFIX: Fix propertyValueCriteriaMatcherTest
Browse files Browse the repository at this point in the history
  • Loading branch information
mficzel committed Mar 11, 2024
1 parent ffa0c00 commit c6cbc1a
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 c6cbc1a

Please sign in to comment.