Remove dbg!(..) expression in highlighter tests

This commit is contained in:
Loïc Lecrenier 2023-05-08 09:45:23 +02:00
parent cd2573fcc3
commit 83ab8cf4e5
1 changed files with 1 additions and 1 deletions

View File

@ -528,7 +528,7 @@ mod tests {
None => MatchingWords::default(),
};
MatcherBuilder::new(dbg!(matching_words), TokenizerBuilder::new().build())
MatcherBuilder::new(matching_words, TokenizerBuilder::new().build())
}
}