+rust-derive-builder-core (0.9.0-3) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
+ * d/patches: add fix_test.patch, fixing an autopkgtest regression
+ with more recent rust-syn package version.
+
+ -- Henry-Nicolas Tourneur <debian@nilux.be> Wed, 13 Oct 2021 16:15:00 +0000
+
rust-derive-builder-core (0.9.0-2) unstable; urgency=medium
* Team upload.
--- /dev/null
+Author: Andrey Kutejko <andy128k@gmail.com>
+Origin: https://github.com/colin-kiegel/rust-derive-builder/pull/205/
+Description: Fix a test faillure following a change on the syn crate.
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- a/src/block.rs
++++ b/src/block.rs
+@@ -67,7 +67,7 @@ mod test {
+ use super::*;
+
+ #[test]
+- #[should_panic(expected = r#"LexError"#)]
++ #[should_panic(expected = r#"lex error"#)]
+ fn block_invalid_token_trees() {
+ Block::from_str("let x = 2; { x+1").unwrap();
+ }