Skip to content

Commit

Permalink
fix: loglevel
Browse files Browse the repository at this point in the history
  • Loading branch information
antazoey committed Dec 12, 2024
1 parent d617c8f commit 2f1f86a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/functional/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,8 @@ def test_contract_file_paths_argument_missing_solidity(
pm = project_with_source_files_contract
with pm.isolate_in_tempdir() as tmp_project:
arguments = (name, "--project", f"{tmp_project.path}")
result = runner.invoke(contracts_paths_cmd, arguments)
with logger.at_level(LogLevel.WARNING):
result = runner.invoke(contracts_paths_cmd, arguments)

expected = (
"Missing compilers for the following file types: '.sol'. "
Expand Down

0 comments on commit 2f1f86a

Please sign in to comment.