test(flags): correct stale pony AJ sprite x-coord expectation (#1163)

The pony sprite-coordinate remap (cbdd4edf7) moved AJ to x:48 and updated board-flags.test.ts, but comment-flags.test.ts still expected the old x:80, leaving master's full test suite red. Align the comment-flags expectation with the live board-flags definition (and the passing board-flags.test.ts).
This commit is contained in:
Tommaso Casaburi
2026-06-08 18:58:20 +07:00
committed by GitHub
parent 5a785a5ab7
commit cf43934708
+1 -1
View File
@@ -22,7 +22,7 @@ describe('comment-flags', () => {
expect(flags.map((flag) => flag.key)).toEqual(['country:de', 'pol:AC', 'pony:AJ']);
expect(flags[1]).toMatchObject({ label: 'Anarcho-Capitalist', x: 0, y: 0 });
expect(flags[2]).toMatchObject({ label: 'Applejack', x: 80, y: 0 });
expect(flags[2]).toMatchObject({ label: 'Applejack', x: 48, y: 0 });
});
it('labels the xx country flag as Tor traffic', () => {