diff --git a/features/s3/step_definitions/objects.js b/features/s3/step_definitions/objects.js index 81c26874d3de..61e9b7f6ccb2 100644 --- a/features/s3/step_definitions/objects.js +++ b/features/s3/step_definitions/objects.js @@ -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;