summaryrefslogtreecommitdiff
path: root/rust-bindings/src/collection_ref.rs
diff options
context:
space:
mode:
Diffstat (limited to 'rust-bindings/src/collection_ref.rs')
-rw-r--r--rust-bindings/src/collection_ref.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/rust-bindings/src/collection_ref.rs b/rust-bindings/src/collection_ref.rs
index 0fb28deb..47daaaca 100644
--- a/rust-bindings/src/collection_ref.rs
+++ b/rust-bindings/src/collection_ref.rs
@@ -54,7 +54,7 @@ mod tests {
#[test]
fn should_get_collection_id() {
- let collection_ref = CollectionRef::new(Some("collection.id"), "ref").unwrap();
+ let collection_ref = CollectionRef::new(Some("collection.id"), "ref");
let id = collection_ref.collection_id().unwrap().to_str().unwrap();
assert_eq!(id, "collection.id");
@@ -62,7 +62,7 @@ mod tests {
#[test]
fn should_get_none_collection_id() {
- let collection_ref = CollectionRef::new(None, "ref").unwrap();
+ let collection_ref = CollectionRef::new(None, "ref");
let id = collection_ref.collection_id();
assert_eq!(id, None);
@@ -70,7 +70,7 @@ mod tests {
#[test]
fn should_get_ref_name() {
- let collection_ref = CollectionRef::new(Some("collection.id"), "ref-name").unwrap();
+ let collection_ref = CollectionRef::new(Some("collection.id"), "ref-name");
let ref_name = collection_ref.ref_name().to_str().unwrap();
assert_eq!(ref_name, "ref-name");