Skip to content

Commit 398c8b9

Browse files
committed
DstackApp.test: strip trailing whitespace flagged by prek
1 parent 9d1d5ac commit 398c8b9

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

kms/auth-eth/test/DstackApp.test.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ describe("DstackApp", function () {
248248
initializer: 'initialize(address,bool,bool,bool,bytes32,bytes32)'
249249
}
250250
) as DstackApp;
251-
251+
252252
await appAuthWithData.waitForDeployment();
253253
appIdWithData = await appAuthWithData.getAddress();
254254
});
@@ -270,7 +270,7 @@ describe("DstackApp", function () {
270270
// Check that events were emitted during initialization
271271
const deploymentTx = await appAuthWithData.deploymentTransaction();
272272
const receipt = await deploymentTx?.wait();
273-
273+
274274
// Count DeviceAdded and ComposeHashAdded events
275275
const deviceEvents = receipt?.logs.filter(log => {
276276
try {
@@ -283,7 +283,7 @@ describe("DstackApp", function () {
283283
return false;
284284
}
285285
}) || [];
286-
286+
287287
const hashEvents = receipt?.logs.filter(log => {
288288
try {
289289
const parsed = appAuthWithData.interface.parseLog({
@@ -295,7 +295,7 @@ describe("DstackApp", function () {
295295
return false;
296296
}
297297
}) || [];
298-
298+
299299
expect(deviceEvents.length).to.equal(1);
300300
expect(hashEvents.length).to.equal(1);
301301
});
@@ -320,7 +320,7 @@ describe("DstackApp", function () {
320320

321321
it("Should reject unauthorized device when allowAnyDevice is false", async function () {
322322
const unauthorizedDevice = ethers.randomBytes(32);
323-
323+
324324
const bootInfo = {
325325
appId: appIdWithData,
326326
composeHash: testHash,

0 commit comments

Comments
 (0)