Skip to content

Commit

Permalink
fix(e2e): import from deprecated packages
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr committed Jul 25, 2023
1 parent b2c3880 commit a719757
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions features/s3/step_definitions/objects.js
Original file line number Diff line number Diff line change
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("../../../deprecated/packages/node-http-handler");
const { toUtf8 } = require("../../../deprecated/packages/util-utf8");
const { Md5 } = require("../../../deprecated/packages/md5-js");
this.S3 = S3;
this.GetObjectCommand = GetObjectCommand;
this.PutObjectCommand = PutObjectCommand;
Expand Down

0 comments on commit a719757

Please sign in to comment.