From 9392121b479fcd3f7582a7bbc5420f3566478241 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Fri, 6 Dec 2013 11:13:41 +0100 Subject: [PATCH] Bug 11124: QA Follow-up resolving a warning and three typos Resolves warning on uninitialized author in split on line 128. Just adds the same behavior for title on line 129 for completeness. Fixes typo on occurrences and two other minor typos. Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall --- misc/load_testing/benchmark_staff.pl | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/misc/load_testing/benchmark_staff.pl b/misc/load_testing/benchmark_staff.pl index 6ccaa49..56085c8 100644 --- a/misc/load_testing/benchmark_staff.pl +++ b/misc/load_testing/benchmark_staff.pl @@ -42,10 +42,10 @@ my $short_psec="|-\n|ON\n"; if ($help || !$baseurl || !$user || !$password) { print <execute; my ($title,$author); my @searchwords; while (($title,$author)=$sth->fetchrow) { - push @searchwords,split / /, $author; - push @searchwords,split / /, $title; + push @searchwords,split / /, $author//''; + push @searchwords,split / /, $title//''; } $sth = $dbh->prepare("select max(itemnumber) from items"); @@ -139,7 +139,7 @@ unless ($short_print) { print "--------------\n"; print "Koha STAFF benchmarking utility\n"; print "--------------\n"; - print "Benchmarking with $max_tries occurences of each operation and $concurrency concurrent sessions \n"; + print "Benchmarking with $max_tries occurrences of each operation and $concurrency concurrent sessions \n"; } # # the global benchmark we do at the end... -- 1.7.2.5