Skip to content

Commit

Permalink
Fix indents in install_instructions test
Browse files Browse the repository at this point in the history
  • Loading branch information
spilist committed Jan 3, 2019
1 parent 9f0de68 commit 48c5988
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -232,18 +232,18 @@ class InstallInstructionTest < InstanceAgentTestCase
context "an empty delete file" do
setup do
@parse_string = <<-END
END
end
END
end

should "return an empty command collection" do
commands = InstallInstruction.parse_remove_commands(@parse_string)
assert_equal 0, commands.length
should "return an empty command collection" do
commands = InstallInstruction.parse_remove_commands(@parse_string)
assert_equal 0, commands.length
end
end
end

context "a single file to delete" do
setup do
@parse_string = <<-END
context "a single file to delete" do
setup do
@parse_string = <<-END
test_delete_path
END
File.stubs(:exist?).with("test_delete_path").returns(true)
Expand Down

0 comments on commit 48c5988

Please sign in to comment.