Skip to content

Commit

Permalink
chore: apply automated lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Dec 16, 2024
1 parent a021361 commit fc897e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/workerd/tests.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ export const workerd_dns = {
}
assert.ok(Array.isArray(results[0]));
assert.strictEqual(results.length, 1);
assert.ok(results[0][0].startsWith('v=spf1'));
assert.ok(results[0][0].startsWith("v=spf1"));
resolve(null);
});
});
Expand All @@ -151,9 +151,9 @@ export const workerd_dns = {
const results = await dnsPromises.resolveCaa("google.com");
assert.ok(Array.isArray(results));
assert.strictEqual(results.length, 1);
assert.strictEqual(typeof results[0].critical, 'number');
assert.strictEqual(typeof results[0].critical, "number");
assert.strictEqual(results[0].critical, 0);
assert.strictEqual(results[0].issue, 'pki.goog');
assert.strictEqual(results[0].issue, "pki.goog");
},
};

Expand Down

0 comments on commit fc897e8

Please sign in to comment.