Skip to content

Commit

Permalink
revert some codes
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-ext-simba-jy committed Sep 24, 2023
1 parent ae45e09 commit 0fec081
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/integration/testHTAP.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ function getRandomDBNames() {
return arr;
}

// Only the AWS servers support the hybrid table in the GitHub action.
if (process.env.CLOUD_PROVIDER === 'AWS') {
describe('Query Context Cache test', function () {
this.retries(3);
Expand All @@ -25,7 +26,7 @@ if (process.env.CLOUD_PROVIDER === 'AWS') {

beforeEach(async () => {
connection = testUtil.createConnection(connOption);
testUtil.connectAsync(connection);
await testUtil.connectAsync(connection);
});

after(async () => {
Expand Down Expand Up @@ -104,8 +105,7 @@ if (process.env.CLOUD_PROVIDER === 'AWS') {
}

it('test Query Context Cache', function (done) {
const queryTests = createQueryTest();
async.series(queryTests, done);
async.series(createQueryTest(), done);
});
});
}

0 comments on commit 0fec081

Please sign in to comment.