From 9e9fe507696dad79436da2b0d00f9e662d9ffa95 Mon Sep 17 00:00:00 2001 From: Vincent Prouillet Date: Sun, 1 Jul 2018 16:14:46 +0200 Subject: [PATCH] Fix rendering benchmark --- components/rendering/benches/all.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/components/rendering/benches/all.rs b/components/rendering/benches/all.rs index 70244521..e996a256 100644 --- a/components/rendering/benches/all.rs +++ b/components/rendering/benches/all.rs @@ -122,7 +122,10 @@ fn bench_render_content_no_shortcode(b: &mut test::Bencher) { fn bench_render_shortcodes_one_present(b: &mut test::Bencher) { let mut tera = Tera::default(); tera.add_raw_template("shortcodes/youtube.html", "{{id}}").unwrap(); + let config = Config::default(); + let permalinks_ctx = HashMap::new(); + let context = RenderContext::new(&tera, &config, "", &permalinks_ctx, InsertAnchor::None); - b.iter(|| render_shortcodes(CONTENT, &tera, &Config::default())); + b.iter(|| render_shortcodes(CONTENT, &context)); }