aports/community/py3-setuptools-rust/fix-pytest-error.patch
Celeste 1c1e8936f9 community/py3-setuptools-rust: adopt aport
also, fix pytest error with upstream patch
2024-06-15 03:24:37 +00:00

14 lines
503 B
Diff

Extracted from https://github.com/PyO3/setuptools-rust/commit/5c1912cb140786468c3c1ce8a6daa1cd1deb508b
--- a/tests/test_extension.py
+++ b/tests/test_extension.py
@@ -42,7 +42,7 @@ def test_metadata_cargo_log(
hello_world_bin.metadata(quiet=False)
captured = capfd.readouterr()
assert captured.out == ""
- assert "TRACE cargo::util::config" in captured.err
+ assert "TRACE" in captured.err
# With quiet set, nothing will be printed
hello_world_bin.metadata(quiet=True)