Skip to content

Commit 043ccb3

Browse files
committed
Add and remove printlns
1 parent 0e88c8a commit 043ccb3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/parser/mod.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,12 @@ mod tests {
9595
#[test]
9696
fn test() {
9797
let parsed = parse_comment("@param random Random thing lmao\n\n@block This is going to be\nA block of text\nThis is crazy right??\n\nHello this is not anotated\n");
98-
//println!("{:?}", parsed);
98+
println!("{:?}", parsed);
9999
}
100100

101101
#[test]
102102
fn italic_works() {
103103
let parsed = parse_comment("@brief \\a example \\\\e example 2 @em example 3");
104-
println!("{:?}", parsed);
105104
assert_eq!(parsed[0], Notation("@brief".to_owned(), "*example* *example* 2 *example* 3".to_owned()))
106105
}
107106
}

0 commit comments

Comments
 (0)