From 9487cb508d189d6319ad8fd3c4b29305e1e62395 Mon Sep 17 00:00:00 2001 From: Bob Lantz <rlantz@cs.stanford.edu> Date: Mon, 29 Sep 2014 19:57:26 -0700 Subject: [PATCH] Fix typo --- examples/test/test_linearbandwidth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/test/test_linearbandwidth.py b/examples/test/test_linearbandwidth.py index 95a18acb..c471e2cb 100755 --- a/examples/test/test_linearbandwidth.py +++ b/examples/test/test_linearbandwidth.py @@ -31,7 +31,7 @@ def testLinearBandwidth( self ): elif unit[ 0 ] == 'M': bw *= 10 ** 6 elif unit[ 0 ] == 'G': - bw *= 10 ** 9a + bw *= 10 ** 9 # check that we have a previous result to compare to if n != 1: self.assertTrue( bw < previous_bw ) -- GitLab