Skip to content

Commit

Permalink
fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
herr-bubu committed Mar 7, 2024
1 parent 268c98d commit b3e2d2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chain-cli/test/galachain-utils.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ describe("deployChaincode", () => {
});

const postDeployChaincodePrivateKey = {
privateKey: await getPrivateKey(),
privateKey: await getPrivateKey(undefined),
isTestnet,
imageTag
};
Expand Down Expand Up @@ -147,7 +147,7 @@ describe("deployChaincode", () => {
jest.spyOn(ux, "prompt").mockResolvedValueOnce(privateKey);

const postDeployChaincodePrivateKey = {
privateKey: await getPrivateKey(),
privateKey: await getPrivateKey(undefined),
isTestnet,
imageTag
};
Expand Down

0 comments on commit b3e2d2f

Please sign in to comment.