diff options
Diffstat (limited to 'tvix/eval/src/value/attrs/tests.rs')
-rw-r--r-- | tvix/eval/src/value/attrs/tests.rs | 8 |
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 c9e402247293..a495dec6f27f 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(), ], ) |