Fix tests with new toml

Signed-off-by: Igor Gnatenko <ignatenkobrain@fedoraproject.org>
epel9
Igor Gnatenko 5 years ago
parent 09b45b3dce
commit 003fb46d2e
No known key found for this signature in database
GPG Key ID: 695714BD1BBC5F4C

@ -0,0 +1,34 @@
From 33dc77fda8c5d993abee4e6c31c7526408877003 Mon Sep 17 00:00:00 2001
From: Martin Geisler <martin@geisler.net>
Date: Wed, 11 Sep 2019 11:17:36 +0100
Subject: [PATCH] markdown_deps: handle test output from toml 0.5.3
The latest minor version of the toml crate seems to give more detailed
error output.
---
src/markdown_deps.rs | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/src/markdown_deps.rs b/src/markdown_deps.rs
index 00ca12b..a557c1c 100644
--- a/src/markdown_deps.rs
+++ b/src/markdown_deps.rs
@@ -276,10 +276,11 @@ mod tests {
let block = "[dependencies]\n\
foobar = 1.5.8";
let request = extract_version_request("foobar", block);
- assert_eq!(
- request.unwrap_err(),
- "TOML parse error: expected newline, found a period at line 2"
- );
+ // toml 0.5.3 returns "found a period at line 2 column 13.
+ // Update the test when we bump the toml crate dependency.
+ assert!(request
+ .unwrap_err()
+ .contains("TOML parse error: expected newline, found a period at line 2"));
}
#[test]
--
2.24.0

@ -6,7 +6,7 @@
Name: rust-%{crate} Name: rust-%{crate}
Version: 0.8.1 Version: 0.8.1
Release: 4%{?dist} Release: 5%{?dist}
Summary: Simple crate for ensuring that version numbers in README files are updated when the crate version changes Summary: Simple crate for ensuring that version numbers in README files are updated when the crate version changes
# Upstream license specification: MIT # Upstream license specification: MIT
@ -16,6 +16,8 @@ Source: %{crates_source}
# Initial patched metadata # Initial patched metadata
# - Bump pulldown-cmark to 0.6, https://github.com/mgeisler/version-sync/pull/79 # - Bump pulldown-cmark to 0.6, https://github.com/mgeisler/version-sync/pull/79
Patch0: version-sync-fix-metadata.diff Patch0: version-sync-fix-metadata.diff
# * Fix tests with toml 0.5.3+, https://github.com/mgeisler/version-sync/commit/33dc77fda8c5d993abee4e6c31c7526408877003
Patch0001: 0001-markdown_deps-handle-test-output-from-toml-0.5.3.patch
ExclusiveArch: %{rust_arches} ExclusiveArch: %{rust_arches}
%if %{__cargo_skip_build} %if %{__cargo_skip_build}
@ -75,6 +77,9 @@ which use "default" feature of "%{crate}" crate.
%endif %endif
%changelog %changelog
* Fri Dec 06 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.8.1-5
- Fix tests with new toml
* Fri Sep 13 19:03:49 CEST 2019 Robert-André Mauchin <zebob.m@gmail.com> - 0.8.1-4 * Fri Sep 13 19:03:49 CEST 2019 Robert-André Mauchin <zebob.m@gmail.com> - 0.8.1-4
- Bump pulldown-cmark to 0.6 - Bump pulldown-cmark to 0.6

Loading…
Cancel
Save