Clippy
This commit is contained in:
parent
18ccb4b79e
commit
939b699518
|
@ -558,7 +558,7 @@ impl Site {
|
|||
let pages = self.pages.values()
|
||||
.filter(|p| p.meta.date.is_some())
|
||||
.take(15) // limit to the last 15 elements
|
||||
.map(|p| p.clone())
|
||||
.cloned()
|
||||
.collect::<Vec<Page>>();
|
||||
|
||||
// Don't generate a RSS feed if none of the pages has a date
|
||||
|
|
|
@ -266,7 +266,7 @@ fn test_page_with_assets_gets_right_parent_path() {
|
|||
File::create(nested_path.join("fail.png")).unwrap();
|
||||
|
||||
let res = Page::parse(
|
||||
&nested_path.join("index.md").as_path(),
|
||||
nested_path.join("index.md").as_path(),
|
||||
"+++\nurl=\"hey\"+++\n",
|
||||
&Config::default()
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue