Skip to content

Commit 3eb5a4d

Browse files
committed
actually fix clippy
1 parent 8f7481a commit 3eb5a4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

postgres-protocol/src/types/test.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ fn non_null_array() {
151151
.unwrap();
152152

153153
let array = array_from_sql(&buf).unwrap();
154-
assert!(array.has_nulls());
154+
assert!(!array.has_nulls());
155155
assert_eq!(array.element_type(), 10);
156156
assert_eq!(array.dimensions().collect::<Vec<_>>().unwrap(), dimensions);
157157
assert_eq!(array.values().collect::<Vec<_>>().unwrap(), values);

0 commit comments

Comments
 (0)