about summary refs log tree commit diff
path: root/tvix/eval/src/value/attrs/tests.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tvix/eval/src/value/attrs/tests.rs')
-rw-r--r--tvix/eval/src/value/attrs/tests.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/tvix/eval/src/value/attrs/tests.rs b/tvix/eval/src/value/attrs/tests.rs
index c9e4022472..a495dec6f2 100644
--- a/tvix/eval/src/value/attrs/tests.rs
+++ b/tvix/eval/src/value/attrs/tests.rs
@@ -34,9 +34,9 @@ fn test_kv_attrs() {
     let kv_attrs = NixAttrs::construct(
         2,
         vec![
-            value_val.clone(),
+            value_val,
             forty_two_val.clone(),
-            name_val.clone(),
+            name_val,
             meaning_val.clone(),
         ],
     )
@@ -69,9 +69,9 @@ fn test_kv_attrs_iter() {
     let kv_attrs = NixAttrs::construct(
         2,
         vec![
-            value_val.clone(),
+            value_val,
             forty_two_val.clone(),
-            name_val.clone(),
+            name_val,
             meaning_val.clone(),
         ],
     )