From 7ea939f7a1b4a557d0fe769a434c3c6e7a0902e7 Mon Sep 17 00:00:00 2001 From: Przemyslaw Motacki Date: Wed, 4 Dec 2024 09:45:13 +0100 Subject: [PATCH] SNOW-1843504 - Testing resubmitting requests using request id --- test/integration/testExecute.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/testExecute.js b/test/integration/testExecute.js index fdf618bfa..4612ce044 100644 --- a/test/integration/testExecute.js +++ b/test/integration/testExecute.js @@ -455,7 +455,7 @@ describe('Execute test - variant', function () { it('Do not INSERT twice when the same request id and connection', async () => { let requestId; - await testUtil.executeCmdAsyncWithAdditionalParameters(firstConnection, 'INSERT INTO test_request_id VALUES (\'testValue\');') + await testUtil.executeCmdAsyncWithAdditionalParameters(firstConnection, 'INSERT INTO test_request_id VALUES (\'testValue\');'); await testUtil.executeCmdAsyncWithAdditionalParameters(firstConnection, 'INSERT INTO test_request_id VALUES (\'testValue\');') .then((result) => { requestId = result.rowStatement.getRequestId();