Skip to content

Commit

Permalink
Improved L1 test for NeMo example
Browse files Browse the repository at this point in the history
  • Loading branch information
jkosek authored and piotrm-nvidia committed Sep 1, 2023
1 parent 0028fdf commit 92b9dee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def verify_client_output(client_output):
else:
LOGGER.info(f'Found "{expected_pattern}" in client output')

expected_patterns = [r"positive", r"alarm_set", r"time\(seven am\)"]
expected_patterns = [r"neutral", r"set the alarm", r"seven am"]
for expected_pattern in expected_patterns:
output_match = re.search(expected_pattern, client_output, re.MULTILINE)
output_array = output_match.group(0) if output_match else None
Expand Down

0 comments on commit 92b9dee

Please sign in to comment.