From 317a09e46e62f2399c1e3097e7ad8d3f073b42a6 Mon Sep 17 00:00:00 2001 From: "Nicholas C. Zakas" Date: Wed, 19 Jan 2022 16:53:23 -0700 Subject: [PATCH] Update tests/lib/rule-tester/flat-rule-tester.js MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: 唯然 --- tests/lib/rule-tester/flat-rule-tester.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib/rule-tester/flat-rule-tester.js b/tests/lib/rule-tester/flat-rule-tester.js index 465dc04ed59..8fcc644b4ad 100644 --- a/tests/lib/rule-tester/flat-rule-tester.js +++ b/tests/lib/rule-tester/flat-rule-tester.js @@ -2465,7 +2465,7 @@ describe("FlatRuleTester", () => { }); describe("Subclassing", () => { - it("should allow subclasses to s`et the describe/it/itOnly statics and should correctly use those values", () => { + it("should allow subclasses to set the describe/it/itOnly statics and should correctly use those values", () => { const assertionDescribe = assertEmitted(ruleTesterTestEmitter, "custom describe", "this-is-a-rule-name"); const assertionIt = assertEmitted(ruleTesterTestEmitter, "custom it", "valid(code);"); const assertionItOnly = assertEmitted(ruleTesterTestEmitter, "custom itOnly", "validOnly(code);");