summaryrefslogtreecommitdiff
path: root/dhall
diff options
context:
space:
mode:
authorNadrieril2020-06-20 22:15:52 +0100
committerNadrieril2020-06-20 22:15:52 +0100
commitb72ad8a5e2bae791f7f21cdfad68432cb128371c (patch)
tree32157be0f4fc5f7f6d8ffcc38b9ba13973d08edb /dhall
parent140d990f3b4d8be5d27438eda1bd5776f7aca587 (diff)
fix: assuage clippy on ci
Diffstat (limited to 'dhall')
-rw-r--r--dhall/build.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/dhall/build.rs b/dhall/build.rs
index a12e91b..660d76a 100644
--- a/dhall/build.rs
+++ b/dhall/build.rs
@@ -187,7 +187,7 @@ fn generate_tests() -> std::io::Result<()> {
|| path == "unit/import/urls/quotedPathFakeUrlEncode"
}),
output_type: Some(FileType::Binary),
- ..default_feature.clone()
+ ..default_feature
},
TestFeature {
module_name: "parser_failure",
@@ -219,7 +219,7 @@ fn generate_tests() -> std::io::Result<()> {
|| path == "unit/DoubleLitSecretelyInt"
}),
output_type: Some(FileType::Binary),
- ..default_feature.clone()
+ ..default_feature
},
TestFeature {
module_name: "binary_decoding_success",
@@ -303,7 +303,7 @@ fn generate_tests() -> std::io::Result<()> {
|| path == "prelude/JSON/number/1"
}),
output_type: Some(FileType::Text),
- ..default_feature.clone()
+ ..default_feature
},
TestFeature {
module_name: "alpha_normalize",