Skip to content

Commit 4b3ef32

Browse files
committed
fix linting in QueryTestAbstract
1 parent 465c525 commit 4b3ef32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cubejs-testing-shared/src/query-test.abstract.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export const prepareCompiler = (content: any, options?: any) => originalPrepareC
1313
}, { adapter: 'postgres', ...options });
1414

1515
export abstract class QueryTestAbstract<T extends BaseDriver> {
16-
abstract getQueryClass(): any;
16+
public abstract getQueryClass(): any;
1717

1818
protected getQuery(compilers: any, options: any): BaseQuery {
1919
const QueryClass = this.getQueryClass();

0 commit comments

Comments
 (0)