Skip to content

Commit a304e5b

Browse files
committed
linter fix
1 parent acada6c commit a304e5b

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

packages/cubejs-schema-compiler/test/integration/postgres/sql-generation.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5371,6 +5371,5 @@ cubes:
53715371
// // Fill
53725372
// ]);
53735373
});
5374-
53755374
});
53765375
});

packages/cubejs-schema-compiler/test/unit/error-reporter.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ describe('ErrorReporter', () => {
1111
// Test inFile and exitFile
1212
reporter.inFile({
1313
fileName: 'schema/users.js',
14-
content: `cube('Users', {\n sql: \`SELECT * FROM users\`,\n measures: {\n count: {\n type: 'count'\n }\n }\n});`
14+
content: 'cube(\'Users\', {\n sql: `SELECT * FROM users`,\n measures: {\n count: {\n type: \'count\'\n }\n }\n});'
1515
});
1616

1717
// Test syntaxError with location
@@ -45,7 +45,7 @@ describe('ErrorReporter', () => {
4545
// Test inFile for another file
4646
reporter.inFile({
4747
fileName: 'schema/orders.js',
48-
content: `cube('Orders', {\n sql: \`SELECT * FROM orders\`\n});`
48+
content: 'cube(\'Orders\', {\n sql: `SELECT * FROM orders`\n});'
4949
});
5050

5151
// Test syntaxError without location but with file context

0 commit comments

Comments
 (0)