Instantiate cucumber writer with default instance

This commit is contained in:
Dennis 2024-06-06 13:57:19 +02:00
parent 926a6c1849
commit 38bd6b547d
No known key found for this signature in database
GPG Key ID: 6937EAEA33A3FA5D

View File

@ -286,7 +286,7 @@ fn main() {
future::ready(()).boxed()
})
.with_writer(DotWriter.normalized())
.run("features/nearest/projection.feature"),
.with_writer(DotWriter::default().normalized())
.run("features/nearest/"),
);
}