Skip to content

Commit 56fba9d

Browse files
committed
fix test
1 parent 843be72 commit 56fba9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/integration/v2/boolean.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ describe("boolean", () => {
2525
const { data, meta } = await statement.fetchResult();
2626
expect(meta[0].type).toEqual("boolean");
2727
const row = data[0];
28-
expect((row as unknown[])[0]).toEqual(false);
28+
expect((row as unknown[])[0]).toEqual(true);
2929
});
3030
});

0 commit comments

Comments
 (0)