Merge pull request #1431 from LeastAuthority/4166.fix-build-on-debian-unstable
Some checks failed
CI / coverage (macos-14, 3.12) (push) Has been cancelled
CI / coverage (ubuntu-22.04, 3.12) (push) Has been cancelled
CI / coverage (ubuntu-22.04, pypy-3.9) (push) Has been cancelled
CI / coverage (windows-2022, 3.12) (push) Has been cancelled
CI / integration (false, macos-14, 3.11) (push) Has been cancelled
CI / integration (false, ubuntu-20.04, 3.11) (push) Has been cancelled
CI / integration (false, windows-2022, 3.11) (push) Has been cancelled
CI / integration (true, ubuntu-20.04, 3.12) (push) Has been cancelled
CI / packaging (macos-14, 3.9) (push) Has been cancelled
CI / packaging (ubuntu-22.04, 3.9) (push) Has been cancelled
CI / packaging (windows-2022, 3.9) (push) Has been cancelled
CI / finish-coverage-report (push) Has been cancelled

Fix #4166: Make test_create_already look in the process's output instead of only stdout
This commit is contained in:
meejah 2025-02-27 13:13:18 -07:00 committed by GitHub
commit 4084baa386
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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):