Skip to content

Commit e3cad09

Browse files
committed
Fixed broken test cases
1 parent 985c433 commit e3cad09

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

integration-tests/tests/cockroach/common.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6049,7 +6049,7 @@ export function tests() {
60496049
}]));
60506050
});
60516051

6052-
test.concurrent('select from a many subquery', async (ctx) => {
6052+
test('select from a many subquery', async (ctx) => {
60536053
const { db } = ctx.cockroach;
60546054

60556055
await db.insert(citiesTable)
@@ -6084,7 +6084,7 @@ export function tests() {
60846084
}]);
60856085
});
60866086

6087-
test.concurrent('select from a one subquery', async (ctx) => {
6087+
test('select from a one subquery', async (ctx) => {
60886088
const { db } = ctx.cockroach;
60896089

60906090
await db.insert(citiesTable)
@@ -6121,7 +6121,7 @@ export function tests() {
61216121
}]);
61226122
});
61236123

6124-
test.concurrent('test $onUpdateFn and $onUpdate works with sql value', async (ctx) => {
6124+
test('test $onUpdateFn and $onUpdate works with sql value', async (ctx) => {
61256125
const { db } = ctx.cockroach;
61266126

61276127
const users = cockroachTable('users_on_update', {

0 commit comments

Comments
 (0)