diff --git a/Cargo.toml b/Cargo.toml index 3984260..1fc6480 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scrapelect" -version = "0.2.0" +version = "0.2.1" edition = "2021" authors = ["Max Carr "] license = "Apache-2.0 OR MIT" diff --git a/filter-proc-macro/Cargo.toml b/filter-proc-macro/Cargo.toml index 8f2bf94..7c041ad 100644 --- a/filter-proc-macro/Cargo.toml +++ b/filter-proc-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scrapelect-filter-proc-macro" -version = "0.2.0" +version = "0.2.1" edition = "2021" authors = ["Max Carr "] license = "Apache-2.0 OR MIT" diff --git a/src/interpreter/mod.rs b/src/interpreter/mod.rs index 1cacdd5..8996572 100644 --- a/src/interpreter/mod.rs +++ b/src/interpreter/mod.rs @@ -366,7 +366,8 @@ mod tests { .parse() .expect("parse URL failed"), ) - .await?.0; + .await? + .0; let mut settings = insta::Settings::clone_current(); settings.set_snapshot_path("../../examples/outputs");