Skip to content

Commit 7a01aaf

Browse files
authored
Fix formatting (#7427)
Fixes formatting for change merged from fork (CI didn't run) #7412
1 parent 431d989 commit 7a01aaf

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

extensions/msal-node-extensions/test/dpapi-addon/Dpapi.spec.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ describe("Test DPAPI addon", () => {
6161
} else {
6262
test("Should throw on non-Windows", () => {
6363
const data = Buffer.from("DPAPITestString");
64-
expect(() => Dpapi.protectData(data, null, DataProtectionScope.LocalMachine)).toThrow();
64+
expect(() =>
65+
Dpapi.protectData(data, null, DataProtectionScope.LocalMachine)
66+
).toThrow();
6567
});
6668
}
6769
});

0 commit comments

Comments
 (0)