fix(fixtures): platform-neutral collision pair (avoid Windows case-insensitivity)

This commit is contained in:
Axel Meyer
2026-06-16 21:04:30 +02:00
parent 50a0a3508f
commit 61c44b4569
3 changed files with 1 additions and 1 deletions

View File

Before

Width:  |  Height:  |  Size: 124 B

After

Width:  |  Height:  |  Size: 124 B

View File

Before

Width:  |  Height:  |  Size: 124 B

After

Width:  |  Height:  |  Size: 124 B

View File

@@ -27,7 +27,7 @@ test('scan-sprite: alias collision -> loud error', () => {
assert.strictEqual(sources.length, 0);
assert.strictEqual(errors.length, 1);
assert.match(errors[0], /alias collision/i);
assert.match(errors[0], /bed1/);
assert.match(errors[0], /bench_table1/);
});
test('scan-sprite: missing dir -> error', () => {