summaryrefslogtreecommitdiff
blob: 7c4bc9f7e50d3becc6be7d73ab6ba073ddb7d861 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
From 5e6171ee7dadd520991153009eb01d7be3c82e7e Mon Sep 17 00:00:00 2001
From: "Keiji, Yoshimi" <walf443@gmail.com>
Date: Mon, 10 Dec 2018 22:40:16 +0900
Subject: [PATCH] Fixed warnings: lib/rspec/core/metadata.rb:172: warning:
 Object#=~ is deprecated; it always returns nil (#2582)

---
 lib/rspec/core/metadata.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/rspec/core/metadata.rb b/lib/rspec/core/metadata.rb
index 094a7a3b3..c68627ac5 100644
--- a/lib/rspec/core/metadata.rb
+++ b/lib/rspec/core/metadata.rb
@@ -169,7 +169,7 @@ def file_path_and_line_number_from(backtrace)
         end
 
         def description_separator(parent_part, child_part)
-          if parent_part.is_a?(Module) && child_part =~ /^(#|::|\.)/
+          if parent_part.is_a?(Module) && /^(?:#|::|\.)/.match(child_part.to_s)
             ''.freeze
           else
             ' '.freeze