Skip to content

Commit

Permalink
remove the dbg! macro in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tomtau authored and Tomas Tauber committed Mar 1, 2024
1 parent d55aa76 commit 3f57932
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion derive/tests/implicit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ fn test_implicit_whitespace() {
fn test_implicit_whitespace_multitag() {
let successful_parse = TestImplicitParser::parse(Rule::program, "a a a");
assert!(successful_parse.is_ok());
dbg!(&successful_parse);
let pairs = successful_parse.unwrap();
assert_eq!(pairs.clone().find_tagged("tail").count(), 2);
}
1 change: 0 additions & 1 deletion derive/tests/opt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ struct TestOptParser;
fn test_opt_tag() {
let successful_parse = TestOptParser::parse(Rule::expr, "*");
assert!(successful_parse.is_ok());
dbg!(&successful_parse);
let pairs = successful_parse.unwrap();
assert!(pairs.find_first_tagged("prefix").is_some());
assert!(pairs.find_first_tagged("suffix").is_none());
Expand Down

0 comments on commit 3f57932

Please sign in to comment.