1
0
mirror of synced 2025-02-09 08:49:26 +03:00

Typo fix: s/$booleanTrue/$booleanFalse (C&P mistake)

This commit is contained in:
Marco Pivetta 2016-07-07 19:43:03 +02:00
parent aa1fda6d5f
commit da7582d329

View File

@ -419,7 +419,7 @@ class UnitOfWorkTest extends OrmTestCase
'empty strings, two fields' => [$emptyStrings, ' '],
'non-empty strings, two fields' => [$nonEmptyStrings, $nonEmptyStrings->id1 . ' ' . $nonEmptyStrings->id2],
'boolean true' => [$booleanTrue, '1'],
'boolean false' => [$booleanTrue, ''],
'boolean false' => [$booleanFalse, ''],
];
}
}