summaryrefslogtreecommitdiff
path: root/spec/patch_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/patch_spec.rb')
-rw-r--r--spec/patch_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/patch_spec.rb b/spec/patch_spec.rb
index 8c3a9b1..6b9bf28 100644
--- a/spec/patch_spec.rb
+++ b/spec/patch_spec.rb
@@ -181,8 +181,8 @@ describe "Diff::LCS.patch" do
# above.
describe "fix bug 891: patchsets do not contain the last equal part" do
before :each do
- @s1 = %w(a b c d e f g h i j k) # rubocop:disable Layout/SpaceInsideArrayPercentLiteral
- @s2 = %w(a b c d D e f g h i j k)
+ @s1 = %w[a b c d e f g h i j k] # rubocop:disable Layout/SpaceInsideArrayPercentLiteral
+ @s2 = %w[a b c d D e f g h i j k]
end
describe "using Diff::LCS.diff with default diff callbacks" do