From d69aaae4500bbddc0231aca28c0523e6cb456b0c Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Tue, 16 Mar 2021 21:26:27 +0900 Subject: [PATCH] Fix a build error This commit fixes the following build error. ```console % cd path/to/rubocop % bundle exec rake (snip) ==> Failures 1) RuboCop Project Changelog future entries For /Users/koic/src/github.com/rubocop/rubocop/spec/../changelog/new_allow_excluding_some_constants_from.md entry link to related issue has a valid URL Failure/Error: expect(issue[:url]).to match(pattern) expected "https://github.com/rubocop-hq/rubocop/pull/9219" to match /^https:\/\/github\.com\/rubocop\/rubocop\/(?:issues|pull)\/9219$/ Diff: @@ -1 +1 @@ -/^https:\/\/github\.com\/rubocop\/rubocop\/(?:issues|pull)\/9219$/ +"https://github.com/rubocop-hq/rubocop/pull/9219" Shared Example Group: "has Changelog format" called from ./spec/project_spec.rb:261 # ./spec/project_spec.rb:192:in `block (6 levels) in ' # ./spec/project_spec.rb:188:in `each' # ./spec/project_spec.rb:188:in `block (5 levels) in ' # tasks/spec_runner.rake:70:in `run_worker' # tasks/spec_runner.rake:30:in `block in run_specs' # tasks/spec_runner.rake:44:in `with_encoding' # tasks/spec_runner.rake:28:in `run_specs' # tasks/spec_runner.rake:116:in `block in ' 1 deprecation logged to /tmp/test_queue_worker_88506_output ``` --- changelog/new_allow_excluding_some_constants_from.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changelog/new_allow_excluding_some_constants_from.md b/changelog/new_allow_excluding_some_constants_from.md index a247a074e02..418a3cbaed9 100644 --- a/changelog/new_allow_excluding_some_constants_from.md +++ b/changelog/new_allow_excluding_some_constants_from.md @@ -1 +1 @@ -* [#9219](https://github.com/rubocop-hq/rubocop/pull/9219): Allow excluding some constants from Style/Documentation. ([@fsateler][]) +* [#9219](https://github.com/rubocop/rubocop/pull/9219): Allow excluding some constants from Style/Documentation. ([@fsateler][])