ソースを参照

added missing parameter to JSON fail case

Nate 9 年 前
コミット
9780b9f49e
1 ファイル変更1 行追加1 行削除
  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']
 
         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