Skip to content

Commit

Permalink
[Platform][AS9726-32D]: Fix sonic-mgmt pytest test_chassis.py::TestCh…
Browse files Browse the repository at this point in the history
…assisApi::test_get_system_eeprom_info fail.
  • Loading branch information
tigerfu000 committed Sep 18, 2024
1 parent f803852 commit fc67cc9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def __parse_output(self, decode_output):
for line in lines:
try:
match = re.search(
'(0x[0-9a-fA-F]{2})([\s]+[\S]+[\s]+)([\S]+)', line)
'(0x[0-9a-fA-F]{2})([\s]+[\S]+[\s]+)(.+)', line)
if match is not None:
idx = match.group(1)
value = match.group(3).rstrip('\0')
Expand Down

0 comments on commit fc67cc9

Please sign in to comment.