You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
763 B
23 lines
763 B
From 8203ca9dc9ee8c8257591bf7e8c122ac1d152009 Mon Sep 17 00:00:00 2001
|
|
From: David Hewitt <mail@davidhewitt.dev>
|
|
Date: Tue, 7 May 2024 21:49:16 +0100
|
|
Subject: [PATCH] fix pytest error
|
|
|
|
---
|
|
tests/test_extension.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/tests/test_extension.py b/tests/test_extension.py
|
|
index 69f86132..28315649 100644
|
|
--- 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)
|