Skip to content

Commit

Permalink
fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
nofarham authored Jan 22, 2024
1 parent 163532d commit b997c91
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/integration/connection/test-stream.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ connection.execute('SELECT * FROM announcements', async (err, _rows) => {
connection.end();
});
});
const s3 = connection.query('SELECT * FROM announcements').stream();
for await (const row of s3) {
rows3.push(row);
}
const s3 = connection.query('SELECT * FROM announcements').stream();
for await (const row of s3) {
rows3.push(row);
}
});

process.on('exit', () => {
Expand Down

0 comments on commit b997c91

Please sign in to comment.