fix: Remove trailing space from NUMBER_OF_PROCESSORS variable

If NUMBER_OF_PROCESSORS is not defined in the environment, b-test/run.sh
sets it to nproc * 2. However it appends a trailing space to the
variable which causes make to fail as "[number] " is in invalid argument
for the "-j" option.

Signed-off-by: Imre Kis <imre.kis@arm.com>
Change-Id: Icdd3f63f7a37245600c93361eea3a7652e68d185
diff --git a/tools/b-test/run.sh.j2 b/tools/b-test/run.sh.j2
index 87abb3e..86fd383 100644
--- a/tools/b-test/run.sh.j2
+++ b/tools/b-test/run.sh.j2
@@ -25,7 +25,7 @@
 TS_ROOT=${TS_ROOT:-$(git rev-parse --show-toplevel)}
 
 # Number of threads to use in parallel
-NUMBER_OF_PROCESSORS=${NUMBER_OF_PROCESSORS:-$(( $(nproc) * 2 )) }
+NUMBER_OF_PROCESSORS=${NUMBER_OF_PROCESSORS:-$(( $(nproc) * 2 ))}
 
 # By default run as much as we can
 FAIL_FAST=${FAIL_FAST:-0}