Skip to content

Commit ae14fa2

Browse files
committed
hacky typecheck fix
1 parent b8dc32d commit ae14fa2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal-packages/testcontainers/src/clickhouse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ async function getAllClickhouseMigrationQueries(migrationsPath: string) {
171171
// The array will be: ["", "Up", "up queries", "Down", "down queries"]
172172
// We want the "up queries" part which is at index 2
173173
if (parts.length >= 3) {
174-
const upQueries = parts[2].trim();
174+
const upQueries = parts[2]!.trim();
175175
queries.push(
176176
...upQueries
177177
.split(";")

0 commit comments

Comments
 (0)