aboutsummaryrefslogtreecommitdiff
path: root/crates/test_utils/src
diff options
context:
space:
mode:
authorYoshua Wuyts <[email protected]>2021-02-05 15:57:26 +0000
committerYoshua Wuyts <[email protected]>2021-02-05 15:57:26 +0000
commit79d103d5b42c5b207c28b6eb8a6ab42f0c685ec5 (patch)
treee996c0d19a90a51704d201e935f519b22644256e /crates/test_utils/src
parentae7bee70a10d01f0fdebfc12c70aca4f765826b3 (diff)
Remove redundant clones
Diffstat (limited to 'crates/test_utils/src')
-rw-r--r--crates/test_utils/src/fixture.rs11
1 files changed, 1 insertions, 10 deletions
diff --git a/crates/test_utils/src/fixture.rs b/crates/test_utils/src/fixture.rs
index e40b61a94..e3f57f3b2 100644
--- a/crates/test_utils/src/fixture.rs
+++ b/crates/test_utils/src/fixture.rs
@@ -95,16 +95,7 @@ impl Fixture {
95 } 95 }
96 } 96 }
97 97
98 Fixture { 98 Fixture { path, text: String::new(), krate, deps, cfg_atoms, cfg_key_values, edition, env }
99 path,
100 text: String::new(),
101 krate: krate,
102 deps,
103 cfg_atoms,
104 cfg_key_values,
105 edition,
106 env,
107 }
108 } 99 }
109} 100}
110 101