Browse Source

added missing parameter to JSON fail case

Nate 9 years ago
parent
commit
9780b9f49e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      toolset/benchmark/test_types/verifications.py

+ 1 - 1
toolset/benchmark/test_types/verifications.py

@@ -125,7 +125,7 @@ def verify_helloworld_object(json_object, url):
         message = json_object['message']
         message = json_object['message']
 
 
         if message != 'hello, world!':
         if message != 'hello, world!':
-            return [('fail', "Expected message of 'hello, world!', got '%s'" % message)]
+            return [('fail', "Expected message of 'hello, world!', got '%s'" % message, url)]
         return problems
         return problems