diff options
-rwxr-xr-x | mpm/python/n3xx_bist | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mpm/python/n3xx_bist b/mpm/python/n3xx_bist index 22f56be84..14f9370d0 100755 --- a/mpm/python/n3xx_bist +++ b/mpm/python/n3xx_bist @@ -406,7 +406,7 @@ class N310BIST(object): )) result['error_msg'] = ex.output output = ex.output - mobj = re.search(r"Throughput: (?P<thrup>[0-9.]+)MB", output) + mobj = re.search(r"Throughput: (?P<thrup>[0-9.]+)\s?MB", output) if mobj is not None: result['throughput'] = float(mobj.group('thrup')) * 1000 else: |