about summary refs log tree commit diff
path: root/tvix/eval
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2022-09-13T13·00+0300
committertazjin <tazjin@tvl.su>2022-09-13T14·41+0000
commit268605140eae3cbfae5ddd18bd83b877e5da5748 (patch)
treecf82bbf9f57162efcb4d70b7fd825afbd0aca40e /tvix/eval
parentd5ee893fb15f9d2aae676763f12b507ad33243b0 (diff)
fix(tvix/eval): address current clippy lints r/4839
Change-Id: I5288849d0e93511b0b5664fa92f1c6882e4a1356
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6563
Reviewed-by: sterni <sternenseemann@systemli.org>
Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/eval')
-rw-r--r--tvix/eval/src/value/attrs/tests.rs8
-rw-r--r--tvix/eval/src/warnings.rs4
2 files changed, 6 insertions, 6 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(),
         ],
     )
diff --git a/tvix/eval/src/warnings.rs b/tvix/eval/src/warnings.rs
index a09c5746d3..6f4f541601 100644
--- a/tvix/eval/src/warnings.rs
+++ b/tvix/eval/src/warnings.rs
@@ -55,11 +55,11 @@ impl EvalWarning {
     fn message(&self, codemap: &CodeMap) -> String {
         match self.kind {
             WarningKind::DeprecatedLiteralURL => {
-                format!("URL literal syntax is deprecated, use a quoted string instead")
+                "URL literal syntax is deprecated, use a quoted string instead".to_string()
             }
 
             WarningKind::UselessInherit => {
-                format!("inherited variable already exists with the same value")
+                "inherited variable already exists with the same value".to_string()
             }
 
             WarningKind::UnusedBinding => {