From 9c07f025a4798f0841cd2b486699d507c08694c3 Mon Sep 17 00:00:00 2001 From: Yurii Dubinka Date: Mon, 16 Aug 2021 23:16:28 +0300 Subject: [PATCH] #452: update rubocop to 1.19.0 --- test/lazylead/system/jira_test.rb | 4 ++-- test/lazylead/task/svn/touch_test.rb | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/lazylead/system/jira_test.rb b/test/lazylead/system/jira_test.rb index 3cda375..0b318d9 100644 --- a/test/lazylead/system/jira_test.rb +++ b/test/lazylead/system/jira_test.rb @@ -143,7 +143,7 @@ def save!(body) end test "description is correct" do - assert_words %w[DATACMNS-1639\ moved\ entity\ instantiators], + assert_words ["DATACMNS-1639 moved entity instantiators"], NoAuthJira.new("https://jira.spring.io") .issues("key=DATAJDBC-480") .first @@ -151,7 +151,7 @@ def save!(body) end test "component is correct" do - assert_equal %w[Stream\ Module], + assert_equal ["Stream Module"], NoAuthJira.new("https://jira.spring.io") .issues("key=XD-3766") .first diff --git a/test/lazylead/task/svn/touch_test.rb b/test/lazylead/task/svn/touch_test.rb index ba21492..2f4a875 100644 --- a/test/lazylead/task/svn/touch_test.rb +++ b/test/lazylead/task/svn/touch_test.rb @@ -55,7 +55,7 @@ class TouchTest < Lazylead::Test ) ) assert_email "[SVN] Important files have been changed!", - %w[3 dgroup /189.md Add\ description\ for\ 189\ issue] + ["3", "dgroup", "/189.md", "Add description for 189 issue"] end end end