Skip to content

Commit

Permalink
fix condition in e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
dasfmi committed Nov 22, 2023
1 parent 25f6326 commit 618024d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration/src/client.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ baz`,
expect(result.status.rowsExamined).toEqual(11);
expect(result.status.rowsMatched).toEqual(11);
expect(result.tables?.length).toEqual(1);
expect(result.tables[0].columns).toEqual(11);
expect(result.tables[0].columns.length).toEqual(11);
});
});
});

0 comments on commit 618024d

Please sign in to comment.