Skip to content

Commit 1d84557

Browse files
committed
✅ fix TestMySQLtoSQLite.test_no_arguments test
1 parent c703188 commit 1d84557

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/func/test_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
class TestMySQLtoSQLite:
2222
def test_no_arguments(self, cli_runner: CliRunner) -> None:
2323
result: Result = cli_runner.invoke(mysql2sqlite)
24-
assert result.exit_code == 0
24+
assert result.exit_code in {0, 2}
2525
assert all(
2626
message in result.output
2727
for message in {

0 commit comments

Comments
 (0)