Skip to content

Commit bca189e

Browse files
committed
format
1 parent f4dc060 commit bca189e

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

test/transaction_test.dart

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -877,9 +877,13 @@ void main() {
877877
});
878878

879879
final rows = await conn.execute('SELECT id FROM t WHERE id = 42');
880-
expect(rows, [
881-
[42],
882-
], reason: 'Insert after savepoint recovery should have been committed');
880+
expect(
881+
rows,
882+
[
883+
[42],
884+
],
885+
reason: 'Insert after savepoint recovery should have been committed',
886+
);
883887
},
884888
);
885889
});

0 commit comments

Comments
 (0)