Skip to content

Commit 48c5988

Browse files
committed
Fix indents in install_instructions test
1 parent 9f0de68 commit 48c5988

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

test/instance_agent/plugins/codedeploy/install_instruction_test.rb

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -232,18 +232,18 @@ class InstallInstructionTest < InstanceAgentTestCase
232232
context "an empty delete file" do
233233
setup do
234234
@parse_string = <<-END
235-
END
236-
end
235+
END
236+
end
237237

238-
should "return an empty command collection" do
239-
commands = InstallInstruction.parse_remove_commands(@parse_string)
240-
assert_equal 0, commands.length
238+
should "return an empty command collection" do
239+
commands = InstallInstruction.parse_remove_commands(@parse_string)
240+
assert_equal 0, commands.length
241+
end
241242
end
242-
end
243243

244-
context "a single file to delete" do
245-
setup do
246-
@parse_string = <<-END
244+
context "a single file to delete" do
245+
setup do
246+
@parse_string = <<-END
247247
test_delete_path
248248
END
249249
File.stubs(:exist?).with("test_delete_path").returns(true)

0 commit comments

Comments
 (0)