From 4c8b322372cfcb2b418fe95efcdf3da757486fa4 Mon Sep 17 00:00:00 2001 From: Joe Rafaniello Date: Mon, 14 Aug 2023 13:44:46 -0400 Subject: [PATCH] Disallow timecop 0.9.7 due to buggy release 0.9.8 includes the following PRs to fix some issues: https://github.com/travisjeffery/timecop/pull/408 https://github.com/travisjeffery/timecop/pull/409 Our miq_widget_spec was failing with 0.9.7 but passing with 0.9.6 and 0.9.8. --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 41e01efeb62..f6a549805d5 100644 --- a/Gemfile +++ b/Gemfile @@ -292,7 +292,7 @@ group :test do gem "db-query-matchers", "~>0.10.0" gem "factory_bot", "~>5.1", :require => false gem "simplecov", ">=0.21.2", :require => false - gem "timecop", "~>0.9", :require => false + gem "timecop", "~>0.9", "!= 0.9.7", :require => false gem "vcr", "~>5.0", :require => false gem "webmock", "~>3.7", :require => false end