From 012ccfa2ef83136faf7918692aa364371f572d0b Mon Sep 17 00:00:00 2001 From: Florian Sesser Date: Tue, 25 Feb 2025 18:23:26 +0000 Subject: [PATCH] Fix #4166: Make test_create_already look in the process's output instead of only stdout ... (supposedly) some recent dependency change made it so the (human-readable) error output lands in stderr instead of stdout (as it should be). Fixes [ticket:4166](https://tahoe-lafs.org/trac/tahoe-lafs/ticket/4166) Co-authored-by: Chris Wood Co-authored-by: Jeff Jacobson --- src/allmydata/test/cli/test_grid_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/allmydata/test/cli/test_grid_manager.py b/src/allmydata/test/cli/test_grid_manager.py index b44b322d2..31473650a 100644 --- a/src/allmydata/test/cli/test_grid_manager.py +++ b/src/allmydata/test/cli/test_grid_manager.py @@ -90,7 +90,7 @@ class GridManagerCommandLine(TestCase): self.assertEqual(1, result.exit_code) self.assertIn( "Can't create", - result.stdout, + result.output, ) def test_create_stdout(self):