From 6b61e273a099edb6bc7ff26d1800ce2a5cf7c491 Mon Sep 17 00:00:00 2001 From: ethicalhack3r Date: Thu, 31 Jul 2014 15:38:02 +0200 Subject: [PATCH] Use fail --- lib/common/common_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/common/common_helper.rb b/lib/common/common_helper.rb index 3edcb515..9e9815fc 100644 --- a/lib/common/common_helper.rb +++ b/lib/common/common_helper.rb @@ -151,7 +151,7 @@ def json(file) begin JSON.parse(content) rescue => e - fail "[ERROR] In JSON file parsing #{file} #{e}" + fail "In JSON file parsing #{file} #{e}" raise end end