Skip to content

Commit 689f756

Browse files
Update src/test/formatter.vitest.ts
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent d7a712a commit 689f756

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/formatter.vitest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ describe('Formatter Engine (Vitest)', () => {
205205
it('align column definitions true', () => {
206206
const t = 'CREATE TABLE t (id INT, name VARCHAR(50))';
207207
const out = formatTsql(t, { options: {} as any, config: cfg({ alignColumnDefinitions: true }), profile: {} });
208-
expect(out).toBe('CREATE TABLE t (\n id INT,\n name VARCHAR(50\n))');
208+
expect(out).toBe('CREATE TABLE t (\n id INT,\n name VARCHAR(50)\n))');
209209
});
210210

211211
it('bracket identifiers remove', () => {

0 commit comments

Comments
 (0)