Browse Source

verify Fixed more syntax errors

Mike Smith 11 years ago
parent
commit
238706e004
1 changed files with 4 additions and 4 deletions
  1. 4 4
      toolset/benchmark/framework_test.py

+ 4 - 4
toolset/benchmark/framework_test.py

@@ -113,12 +113,12 @@ class FrameworkTest:
     obj = json.loads(jsonString)
     obj = json.loads(jsonString)
 
 
     if not obj:
     if not obj:
-      return false
+      return False
     if not obj.message:
     if not obj.message:
-      return false
+      return False
     if not obj.message.lower() == "hello, world!":
     if not obj.message.lower() == "hello, world!":
-      return false
-  return true
+      return False
+    return True
 
 
   ############################################################
   ############################################################
   # start(benchmarker)
   # start(benchmarker)