Skip to content

Commit

Permalink
fix(e2e): import from @smithy packages where needed (#5012)
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr committed Jul 25, 2023
1 parent b2c3880 commit 53df336
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions features/s3/step_definitions/objects.js
Expand Up @@ -24,9 +24,9 @@ function getSignedUrl(client, command, params, callback) {

Before({ tags: "@objects" }, function (scenario, callback) {
const { S3, GetObjectCommand, PutObjectCommand } = require("../../../clients/client-s3");
const { streamCollector } = require("../../../packages/node-http-handler");
const { toUtf8 } = require("../../../packages/util-utf8");
const { Md5 } = require("../../../packages/md5-js");
const { streamCollector } = require("@smithy/node-http-handler");
const { toUtf8 } = require("@smithy/util-utf8");
const { Md5 } = require("@smithy/md5-js");
this.S3 = S3;
this.GetObjectCommand = GetObjectCommand;
this.PutObjectCommand = PutObjectCommand;
Expand Down

0 comments on commit 53df336

Please sign in to comment.