Skip to content

Commit 3820b46

Browse files
committed
Some minor mistakes in TSQL test
1 parent ee46afe commit 3820b46

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/TSqlFormatterTest.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import supportsBetween from './features/between';
1010
import supportsOperators from './features/operators';
1111
import supportsJoin from './features/join';
1212

13-
describe('StandardSqlFormatter', () => {
13+
describe('TSqlFormatter', () => {
1414
const format = (query, cfg = {}) => sqlFormatter.format(query, { ...cfg, language: 'tsql' });
1515

1616
behavesLikeSqlFormatter(format);
@@ -44,7 +44,7 @@ describe('StandardSqlFormatter', () => {
4444
// TODO: The following are duplicated from StandardSQLFormatter test
4545

4646
it('formats INSERT without INTO', () => {
47-
const result = sqlFormatter.format(
47+
const result = format(
4848
"INSERT Customers (ID, MoneyBalance, Address, City) VALUES (12,-123.4, 'Skagen 2111','Stv');"
4949
);
5050
expect(result).toBe(dedent`

0 commit comments

Comments
 (0)