From b59bd54776f0c20cb9e995e2e5dde6e7388a27eb Mon Sep 17 00:00:00 2001 From: Suzanne Vogt Date: Sun, 5 Jan 2025 16:33:54 -0500 Subject: [PATCH] Y2K-type bug in test. --- spec/models/provider_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/models/provider_spec.rb b/spec/models/provider_spec.rb index 0fc43867b..d5d326106 100644 --- a/spec/models/provider_spec.rb +++ b/spec/models/provider_spec.rb @@ -315,7 +315,7 @@ it "should show all cumulative years" do provider = create(:provider) expect(provider.cumulative_years).to eq( - [2_015, 2_016, 2_017, 2_018, 2_019, 2_020, 2_021, 2_022, 2_023, 2_024], + [2_015, 2_016, 2_017, 2_018, 2_019, 2_020, 2_021, 2_022, 2_023, 2_024, 2_025], ) end