fix(typo): missing semicolon

This commit is contained in:
Stéphane Duret 2020-06-15 11:37:49 +02:00 committed by GitHub
parent 6215ae7ca3
commit 7a5042d181
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ sub manage_selection {
# Read Throughput = 6.98 MB/s
$self->{global} = {};
foreach (split(/\n/, $stdout)) {
$self->{global}->{write_rate} = $options{custom}->convert_to_bytes(raw_value => $1) if (/.*Write\sThroughput\s=\s(.*)$/i)
$self->{global}->{write_rate} = $options{custom}->convert_to_bytes(raw_value => $1) if (/.*Write\sThroughput\s=\s(.*)$/i);
$self->{global}->{read_rate} = $options{custom}->convert_to_bytes(raw_value => $1) if (/.*Read\sThroughput\s=\s(.*)$/i);
}
}