Merge pull request #2055 from s-duret/patch-15

fix(typo): missing semicolon
This commit is contained in:
qgarnier 2020-06-15 11:40:25 +02:00 committed by GitHub
commit 5f17d7e804
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);
}
}