Skip to content
This repository has been archived by the owner on Dec 9, 2024. It is now read-only.

Commit

Permalink
fix: Fix misnamed variable in test (#179)
Browse files Browse the repository at this point in the history
  • Loading branch information
tbarlow12 committed Sep 13, 2019
1 parent 7cdb55c commit 5afe8dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/services/functionAppService.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ describe("Function App Service", () => {

it("gets master key", async () => {
const service = createService();
const masterKey = await service.getMasterKey();
expect(masterKey).toEqual(masterKey);
const result = await service.getMasterKey();
expect(result).toEqual(masterKey);

});

Expand Down

0 comments on commit 5afe8dc

Please sign in to comment.