diff options
Diffstat (limited to 'tvix/glue/src/tvix_store_io.rs')
-rw-r--r-- | tvix/glue/src/tvix_store_io.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tvix/glue/src/tvix_store_io.rs b/tvix/glue/src/tvix_store_io.rs index fea336e2350b..4146ededb40c 100644 --- a/tvix/glue/src/tvix_store_io.rs +++ b/tvix/glue/src/tvix_store_io.rs @@ -356,7 +356,7 @@ mod tests { let value = result.value.expect("must be some"); match value { - tvix_eval::Value::String(s) => Some((**s).clone().into_string_lossy()), + tvix_eval::Value::String(s) => Some((***s).clone().into_string_lossy()), _ => panic!("unexpected value type: {:?}", value), } } @@ -422,7 +422,7 @@ mod tests { match value { tvix_eval::Value::String(s) => { - assert_eq!(s, "/deep/thought"); + assert_eq!(*s, "/deep/thought"); } _ => panic!("unexpected value type: {:?}", value), } |