Adjust stringification of input per feedback

Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
This commit is contained in:
Clinton Wolfe 2020-06-08 11:37:35 -04:00
parent a839d4602c
commit 11e0428094

View file

@ -335,7 +335,7 @@ module Inspec
#--------------------------------------------------------------------------#
def to_s
"Input #{name} with " + (sensitive ? "***" : "#{current_value}")
"Input #{name} with value " + (sensitive ? "*** (senstive)" : "#{current_value}")
end
#--------------------------------------------------------------------------#