Remove stray dbg! calls

This commit is contained in:
Kris Nuttycombe 2024-03-12 12:20:42 -06:00
parent a788fc9318
commit c967bb8b39
1 changed files with 2 additions and 2 deletions

View File

@ -553,7 +553,7 @@ mod tests {
row_count += 1; row_count += 1;
let value: u64 = row.get(0).unwrap(); let value: u64 = row.get(0).unwrap();
let scope = parse_scope(row.get(1).unwrap()); let scope = parse_scope(row.get(1).unwrap());
match dbg!(value) { match value {
EXTERNAL_VALUE => assert_eq!(scope, Some(Scope::External)), EXTERNAL_VALUE => assert_eq!(scope, Some(Scope::External)),
INTERNAL_VALUE => assert_eq!(scope, Some(Scope::Internal)), INTERNAL_VALUE => assert_eq!(scope, Some(Scope::Internal)),
_ => { _ => {
@ -730,7 +730,7 @@ mod tests {
row_count += 1; row_count += 1;
let value: u64 = row.get(0).unwrap(); let value: u64 = row.get(0).unwrap();
let scope = parse_scope(row.get(1).unwrap()); let scope = parse_scope(row.get(1).unwrap());
match dbg!(value) { match value {
EXTERNAL_VALUE => assert_eq!(scope, Some(Scope::External)), EXTERNAL_VALUE => assert_eq!(scope, Some(Scope::External)),
INTERNAL_VALUE => assert_eq!(scope, Some(Scope::Internal)), INTERNAL_VALUE => assert_eq!(scope, Some(Scope::Internal)),
_ => { _ => {