diff --git a/tests/.snapshots/success.txt b/tests/.snapshots/success.txt index f74011a5..2a7256db 100644 --- a/tests/.snapshots/success.txt +++ b/tests/.snapshots/success.txt @@ -1921,10 +1921,12 @@ ✓ fromSql() → it records the table, not the schema, for qualified identifiers ✓ fromSql() → it handles quoted identifiers ✓ fromSql() → it ignores schema metadata tables + ✓ fromSql() → it does not leak int keys for numeric identifiers ✓ fromSql() → it returns nothing for non-DML statements ✓ fromMigrationSource() → it extracts tables from Schema builder calls ✓ fromMigrationSource() → it extracts tables from raw DDL statements ✓ fromMigrationSource() → it records the table, not the schema, in qualified DDL and DML + ✓ fromMigrationSource() → it does not leak int keys for numeric table names ✓ fromMigrationSource() → it extracts tables from DB::table calls PASS Tests\Unit\Plugins\Tia\TestPaths @@ -2191,4 +2193,4 @@ ✓ pass with dataset with ('my-datas-set-value') ✓ within describe → pass with dataset with ('my-datas-set-value') - Tests: 1 deprecated, 4 warnings, 5 incomplete, 2 notices, 40 todos, 35 skipped, 1545 passed (3378 assertions) \ No newline at end of file + Tests: 1 deprecated, 4 warnings, 5 incomplete, 2 notices, 40 todos, 35 skipped, 1547 passed (3381 assertions) \ No newline at end of file diff --git a/tests/Visual/Parallel.php b/tests/Visual/Parallel.php index a35d3492..f91fc7bb 100644 --- a/tests/Visual/Parallel.php +++ b/tests/Visual/Parallel.php @@ -24,13 +24,13 @@ test('parallel', function () use ($run): void { $file = file_get_contents(__FILE__); $file = preg_replace( '/\$expected = \'.*?\';/', - "\$expected = '1 deprecated, 4 warnings, 5 incomplete, 3 notices, 40 todos, 27 skipped, 1528 passed (3325 assertions)';", + "\$expected = '1 deprecated, 4 warnings, 5 incomplete, 3 notices, 40 todos, 27 skipped, 1530 passed (3328 assertions)';", $file, ); file_put_contents(__FILE__, $file); } - $expected = '1 deprecated, 4 warnings, 5 incomplete, 3 notices, 40 todos, 27 skipped, 1528 passed (3325 assertions)'; + $expected = '1 deprecated, 4 warnings, 5 incomplete, 3 notices, 40 todos, 27 skipped, 1530 passed (3328 assertions)'; expect($output) ->toContain("Tests: {$expected}")