mirror of
https://github.com/codeflash-ai/codeflash.git
synced 2026-05-04 18:25:17 +00:00
fix: add missing return type annotations to test functions
Co-authored-by: Aseem Saxena <aseembits93@users.noreply.github.com>
This commit is contained in:
parent
48e6835990
commit
8e2bab2e42
1 changed files with 2 additions and 2 deletions
|
|
@ -2,7 +2,7 @@ import subprocess
|
|||
import sys
|
||||
|
||||
|
||||
def test_help_displays_logo():
|
||||
def test_help_displays_logo() -> None:
|
||||
result = subprocess.run(
|
||||
[sys.executable, "-c", "from codeflash.main import main; main()", "--help"], capture_output=True, text=True
|
||||
)
|
||||
|
|
@ -10,7 +10,7 @@ def test_help_displays_logo():
|
|||
assert "codeflash.ai" in result.stdout
|
||||
|
||||
|
||||
def test_help_short_flag_displays_logo():
|
||||
def test_help_short_flag_displays_logo() -> None:
|
||||
result = subprocess.run(
|
||||
[sys.executable, "-c", "from codeflash.main import main; main()", "-h"], capture_output=True, text=True
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue