Run cargo fmt.
This commit is contained in:
parent
34677a5fa1
commit
b4fadea55d
|
@ -29,8 +29,8 @@
|
|||
//! To create an OPML document from scratch, use [`OPML::default()`] or the good
|
||||
//! old `OPML { /* ... */ }` syntax.
|
||||
|
||||
use serde::{Deserialize, Serialize};
|
||||
use hard_xml::{XmlRead, XmlWrite};
|
||||
use serde::{Deserialize, Serialize};
|
||||
use thiserror::Error;
|
||||
|
||||
/// All possible errors.
|
||||
|
|
|
@ -23,10 +23,7 @@ fn test_minimum_valid_opml() {
|
|||
#[test]
|
||||
fn test_valid_empty_docs() {
|
||||
assert_eq!(
|
||||
OPML::from_str(
|
||||
&read("tests/samples/empty_docs.opml").unwrap()
|
||||
)
|
||||
.unwrap(),
|
||||
OPML::from_str(&read("tests/samples/empty_docs.opml").unwrap()).unwrap(),
|
||||
OPML {
|
||||
version: "2.0".to_string(),
|
||||
head: Some(Head {
|
||||
|
|
Loading…
Reference in New Issue