Skip to content

Commit 8344d95

Browse files
fix for tests
1 parent de26306 commit 8344d95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ads/aqua/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def __init__(
4848
or 'ERROR' if not set. Example values include 'DEBUG', 'INFO',
4949
'WARNING', 'ERROR', and 'CRITICAL'.
5050
"""
51-
if log_level not in LOG_LEVELS:
51+
if log_level.upper() not in LOG_LEVELS:
5252
logger.error(
5353
f"Log level should be one of {LOG_LEVELS}. Setting default to ERROR."
5454
)

0 commit comments

Comments
 (0)