From 491ec001a2ff5dcdf749e9a194d7ece668b7e273 Mon Sep 17 00:00:00 2001 From: Clinton Wolfe Date: Wed, 20 Feb 2019 20:40:35 -0500 Subject: [PATCH] Fix bad class name in unit test Signed-off-by: Clinton Wolfe --- test/unit/inputs/input_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/inputs/input_test.rb b/test/unit/inputs/input_test.rb index 37d1c082b..18301abd4 100644 --- a/test/unit/inputs/input_test.rb +++ b/test/unit/inputs/input_test.rb @@ -18,7 +18,7 @@ describe Inspec::Input do end it 'returns the dummy value if no value is assigned' do - input.value.must_be_kind_of Inspec::Input::DEFAULT_ATTRIBUTE + input.value.must_be_kind_of Inspec::Attribute::DEFAULT_ATTRIBUTE # TODO - test for new class too input.value.to_s.must_equal "Input 'test_input' does not have a value. Skipping test." end