| Index: client/tests/tracing_microbenchmark/tracers.py
 | 
| diff --git a/client/tests/tracing_microbenchmark/tracers.py b/client/tests/tracing_microbenchmark/tracers.py
 | 
| index 08ca7e335ab8ae552b7ebd7cb10889fb89c4a0ef..bdd5194de0ccfa8caf52f0acecb5f961378fd880 100644
 | 
| --- a/client/tests/tracing_microbenchmark/tracers.py
 | 
| +++ b/client/tests/tracing_microbenchmark/tracers.py
 | 
| @@ -56,5 +56,5 @@ class ftrace(base_tracer.Tracer):
 | 
|                  cpu_key = '%s_%s' % (cpu, key)
 | 
|                  total_key = 'total_' + key
 | 
|                  results[cpu_key] = val
 | 
| -                results[total_key] = (results.get(total_key, 0) +
 | 
| +                results[total_key] = (results.get(total_key, 0) + 
 | 
|                                        results[cpu_key])
 | 
| 
 |