Skip to content

Commit dc5ec9e

Browse files
committed
Fix test
1 parent b7cc8ac commit dc5ec9e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/main/test_main.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import os
2+
import re
23
from pathlib import Path
34

45
import httpx
@@ -42,7 +43,7 @@ def test_main_shows_version():
4243
result = CliRunner().invoke(main, "--version")
4344

4445
assert result.exit_code == 0
45-
assert "0.1.0" in result.output
46+
assert "0.2.0" in result.output
4647

4748

4849
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)