Skip to content

Commit

Permalink
tests: Fix binary tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yhabteab authored and nilmerg committed May 15, 2023
1 parent 5240661 commit 1a26879
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/Behavior/BinaryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,9 @@ protected function behavior(bool $postgres = false): Binary
protected function condition($value = self::TEST_HEX_VALUE): Equal
{
$c = new Equal(static::TEST_COLUMN, $value);
$c->metaData()->set('columnName', static::TEST_COLUMN);
$c->metaData()
->set('originalValue', $value)
->set('columnName', static::TEST_COLUMN);

return $c;
}
Expand Down

0 comments on commit 1a26879

Please sign in to comment.