Skip to content

Commit b272194

Browse files
committed
fix(linter): misplaced backtick in jest/no-conditional-expect diagnostic (#11514)
1 parent 0fdc51e commit b272194

File tree

2 files changed

+55
-55
lines changed

2 files changed

+55
-55
lines changed

crates/oxc_linter/src/rules/jest/no_conditional_expect.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use crate::{
1616

1717
fn no_conditional_expect_diagnostic(span: Span) -> OxcDiagnostic {
1818
OxcDiagnostic::warn("Unexpected conditional expect")
19-
.with_help("Avoid calling `expect` conditionally`")
19+
.with_help("Avoid calling `expect` conditionally")
2020
.with_label(span)
2121
}
2222

0 commit comments

Comments
 (0)