Skip to content

Commit

Permalink
remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Dec 20, 2024
1 parent 7ab890b commit 47bae52
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ def test_app(outpath: str | bool):
) as mock_calculate_optimal_voltages,
):
mock_calculate_optimal_voltages.return_value = np.array([72.14, 50.98, 18.59])
if outpath is not False:
print("\n\n\n\n\n\n")
if type(outpath) is str:
result = runner.invoke(
app,
[
Expand All @@ -38,7 +37,6 @@ def test_app(outpath: str | bool):
f"{outpath}",
],
)
print("aaa")
elif not outpath:
result = runner.invoke(
app, ["calculate-voltages", "tests/data/raw_data.csv"]
Expand Down

0 comments on commit 47bae52

Please sign in to comment.