Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix spec test to resolve sporadic test failure. #17730

Merged
merged 1 commit into from
Jul 19, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
@stack.retirement_check
@stack.reload
expect(@stack.retirement_last_warn).not_to be_nil
expect(Time.now.utc - @stack.retirement_last_warn).to be < 30
end
end

Expand Down
1 change: 0 additions & 1 deletion spec/models/service/retirement_management_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
@service.retirement_check
@service.reload
expect(@service.retirement_last_warn).not_to be_nil
expect(Time.now.utc - @service.retirement_last_warn).to be < 30
end
end

Expand Down
1 change: 0 additions & 1 deletion spec/models/vm/retirement_management_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
@vm.retirement_check
@vm.reload
expect(@vm.retirement_last_warn).not_to be_nil
expect(Time.now.utc - @vm.retirement_last_warn).to be < 30
end
end

Expand Down