Skip to content

Commit cc4441f

Browse files
committed
Cleanup
1 parent ef2c427 commit cc4441f

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

tests/types/bit_vec.rs

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ fn test_bit_params() {
88
let mut bv = BitVec::from_bytes(&[0b0110_1001, 0b0000_0111]);
99
bv.pop();
1010
bv.pop();
11-
test_type("BIT(14)", &[(Some(bv),
12-
"B'01101001000001'"),
11+
test_type("BIT(14)", &[(Some(bv), "B'01101001000001'"),
1312
(None, "NULL")])
1413
}
1514

@@ -18,9 +17,7 @@ fn test_varbit_params() {
1817
let mut bv = BitVec::from_bytes(&[0b0110_1001, 0b0000_0111]);
1918
bv.pop();
2019
bv.pop();
21-
test_type("VARBIT", &[(Some(bv),
22-
"B'01101001000001'"),
23-
(Some(BitVec::from_bytes(&[])),
24-
"B''"),
20+
test_type("VARBIT", &[(Some(bv), "B'01101001000001'"),
21+
(Some(BitVec::from_bytes(&[])), "B''"),
2522
(None, "NULL")])
2623
}

0 commit comments

Comments
 (0)