Skip to content

Commit

Permalink
chore: fix test file
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelSun90 authored Jul 24, 2024
1 parent f4b978c commit cc5b951
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/tvp-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ describe('calling a procedure that takes and returns a TVP', function() {
});

it('correctly handles validation errors', function(done) {
const request = new Request('__tediousTvpTest', (err) => {
const request = new Request('__tediousTvpTest', (err) => {
assert.instanceOf(err, InputError);
assert.strictEqual(err?.message, 'Input parameter \'tvp\' could not be validated');

Expand All @@ -194,7 +194,7 @@ describe('calling a procedure that takes and returns a TVP', function() {
const request = new Request('SELECT 1', done);
connection.execSql(request);
});

Check failure on line 197 in test/integration/tvp-test.js

View workflow job for this annotation

GitHub Actions / Linting

Trailing spaces not allowed
const table = {
columns: [
{
Expand Down

0 comments on commit cc5b951

Please sign in to comment.