Skip to content

Commit 3cfafea

Browse files
committed
debug: more pretty_assertions
1 parent 3d99926 commit 3cfafea

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ visitor = ["sqlparser_derive"]
4848
bigdecimal = { version = "0.4.1", features = ["serde"], optional = true }
4949
log = "0.4"
5050
recursive = { version = "0.1.1", optional = true}
51+
pretty_assertions = "1"
5152

5253
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"], optional = true }
5354
# serde_json is only used in examples/cli, but we have to put it outside
@@ -59,7 +60,6 @@ sqlparser_derive = { version = "0.3.0", path = "derive", optional = true }
5960
[dev-dependencies]
6061
simple_logger = "5.0"
6162
matches = "0.1"
62-
pretty_assertions = "1"
6363

6464
[package.metadata.docs.rs]
6565
# Document these features on docs.rs

src/test_utils.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ use crate::parser::{Parser, ParserError};
3636
use crate::tokenizer::{Token, Tokenizer};
3737
use crate::{ast::*, parser::ParserOptions};
3838

39-
#[cfg(test)]
4039
use pretty_assertions::assert_eq;
4140

4241
/// Tests use the methods on this struct to invoke the parser on one or

0 commit comments

Comments
 (0)