Commit 09443020 authored by Mark Lapierre's avatar Mark Lapierre

Don't try to delete nonexistent group

If the test is in quarantine it won't create a group, so it should
not try to delete the group in the after hook.
parent 7da7083a
......@@ -104,8 +104,9 @@ module QA
end
end
end
after(:all) do
remove_group(@group)
remove_group(@group) unless @group.nil?
end
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment