Skip to content

Commit eaa744c

Browse files
authored
Merge branch 'main' into renovate/actions-checkout-5.x
2 parents b2df74a + 18a2844 commit eaa744c

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=amd64 rust@sha256:f1cbe94e8dbfa9deaa8a7d90d801ed81db2a84c363276b6a93055d3c4bba7409 AS strip-stage
1+
FROM --platform=amd64 rust@sha256:6e6d04bd50cd4c433a805c58c13f186a508c5b5417b9b61cae40ec28e0593c51 AS strip-stage
22
ARG DIRNAME
33
RUN apt-get update
44
RUN apt-get -y install binutils binutils-aarch64-linux-gnu

tests/document_tests.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ fn document_new() {
1616
assert_ne!(document.id(), "");
1717
assert_eq!(document.revision_id(), None);
1818
assert_eq!(document.sequence(), 0);
19-
assert!(document.properties());
2019
assert_eq!(document.properties().count(), 0);
2120
}
2221

@@ -29,7 +28,6 @@ fn document_new_with_id() {
2928
assert_eq!(document.id(), "foo");
3029
assert_eq!(document.revision_id(), None);
3130
assert_eq!(document.sequence(), 0);
32-
assert!(document.properties());
3331
assert_eq!(document.properties().count(), 0);
3432
}
3533

tests/fleece_tests.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ fn basic_values() {
7272
assert_eq!(dict.get("s").as_string(), Some("Foo"));
7373

7474
let a = dict.get("a").as_array();
75-
assert!(a);
7675
assert_eq!(a, a);
7776
assert_eq!(a.count(), 2);
7877
assert_eq!(a.get(0).as_i64(), Some(1));

0 commit comments

Comments
 (0)