Skip to content

Commit

Permalink
test: fix test broken by merge
Browse files Browse the repository at this point in the history
  • Loading branch information
elijah-potter committed Nov 23, 2024
1 parent aaa702f commit f8064ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions harper-core/src/spell/full_dictionary.rs
Original file line number Diff line number Diff line change
Expand Up @@ -300,8 +300,8 @@ mod tests {
#[test]
fn herself_is_pronoun() {
let dict = FullDictionary::curated();
assert!(dict.get_word_metadata_str("herself").is_pronoun());
assert!(dict.get_word_metadata_str("Herself").is_pronoun());
assert!(dict.get_word_metadata_str("herself").is_pronoun_noun());
assert!(dict.get_word_metadata_str("Herself").is_pronoun_noun());
}

#[test]
Expand Down

0 comments on commit f8064ae

Please sign in to comment.