Remove obsolete mix_stderr=False

This commit is contained in:
Simon Willison 2025-09-30 14:33:24 -07:00
commit d87bd12dbc
3 changed files with 5 additions and 5 deletions

View file

@ -309,7 +309,7 @@ async def test_auth_with_dstok_token(ds_client, scenario, should_work):
@pytest.mark.parametrize("expires", (None, 1000, -1000))
def test_cli_create_token(event_loop, app_client, expires):
secret = app_client.ds._secret
runner = CliRunner(mix_stderr=False)
runner = CliRunner()
args = ["create-token", "--secret", secret, "test"]
if expires:
args += ["--expires-after", str(expires)]