fix underscores in test names

This commit is contained in:
Fabio Ivona
2023-03-22 11:24:21 +01:00
parent 7a699e16db
commit 22467d05c8
3 changed files with 5 additions and 1 deletions

View File

@ -8,6 +8,6 @@ it('evaluates the code', function ($evaluatable, $expected) {
expect($code)->toBe($expected);
})->with([
['version()', '__pest_evaluable_version__'],
['version__ ', '__pest_evaluable_version___'],
['version__ ', '__pest_evaluable_version_____'],
['version\\', '__pest_evaluable_version_'],
]);