Remove clippy and debug prints

This commit is contained in:
Koxiaet 2020-09-06 06:42:10 +01:00
parent 81d85c2535
commit fca8f6e991
2 changed files with 0 additions and 3 deletions

View File

@ -4,8 +4,6 @@
//! It uses the [pest](https://crates.io/crates/pest) crate to parse the input and then transforms
//! it into Rust types.
#![forbid(unsafe_code)]
#![warn(clippy::pedantic)]
#![allow(clippy::doc_markdown, clippy::find_map, clippy::filter_map, clippy::module_name_repetitions, clippy::wildcard_imports, clippy::enum_glob_use)]
use std::fmt;
use pest::RuleType;

View File

@ -109,7 +109,6 @@ fn test_block_string_value() {
block_string_value("line 1\r\n line 2\n line 3\r line 4"),
"line 1\nline 2\n line 3\n line 4"
);
dbg!();
assert_eq!(
block_string_value("\r\r some text\r\n \n \n "),
"some text"