Skip to content

Commit

Permalink
fix: Fix misnamed variable in test (#179)
Browse files Browse the repository at this point in the history
  • Loading branch information
tbarlow12 authored Jun 25, 2019
1 parent d8cdbcf commit 83cf9e4
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 83cf9e4

Please sign in to comment.