mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Backported CliRunner fix from e3eb356a
Removed obsolete mix_stderr=False arguments from CliRunner() calls which are not supported in Click 8.3.0.
This commit is contained in:
parent
0e2d9ccd99
commit
ef8e75db78
3 changed files with 11 additions and 8 deletions
|
|
@ -44,7 +44,7 @@ def test_crossdb_warning_if_too_many_databases(tmp_path_factory):
|
|||
conn = sqlite3.connect(path)
|
||||
conn.execute("vacuum")
|
||||
dbs.append(path)
|
||||
runner = CliRunner(mix_stderr=False)
|
||||
runner = CliRunner()
|
||||
result = runner.invoke(
|
||||
cli,
|
||||
[
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue