From f16b31f0773c2fd1122ff0ad98cb392e762f0d0b Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Fri, 26 Feb 2016 15:28:08 +0100 Subject: Adding a bunch of tests --- app/helpers/application_helper.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/helpers') diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 7a74a4d96..4c65a78bb 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -6,8 +6,8 @@ module ApplicationHelper end def unique_tag_to_local_id(tag, expected_type) - Regexp.new("objectId=([\d]+):objectType=#{expected_type}").match(tag) - return match[1] unless match.nil? + matches = Regexp.new("objectId=([\\d]+):objectType=#{expected_type}").match(tag) + return matches[1] unless matches.nil? end def local_id?(id) -- cgit