From aa33c8071bcecbf96f6153cdabaab9bf0d6e8bda Mon Sep 17 00:00:00 2001
From: Mike Linksvayer <mlinksva@github.com>
Date: Sat, 8 Apr 2017 22:40:27 -0700
Subject: [PATCH] satisfy rubocop 0.48.1

---
 spec/license_shown_spec.rb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/spec/license_shown_spec.rb b/spec/license_shown_spec.rb
index 4ef3f8c..adf631f 100644
--- a/spec/license_shown_spec.rb
+++ b/spec/license_shown_spec.rb
@@ -5,7 +5,7 @@ require 'spec_helper'
 describe 'shown licenses' do
   # Whitelist of popular licenses that are shown (non-hidden)
   # Note: most new licenses that are added should be hidden by default
-  SHOWN_LICENSES = %w(
+  SHOWN_LICENSES = %w[
     agpl-3.0
     apache-2.0
     bsd-2-clause
@@ -18,7 +18,7 @@ describe 'shown licenses' do
     mit
     mpl-2.0
     unlicense
-  ).freeze
+  ].freeze
 
   it 'has the expected number of shown licenses' do
     expect(shown_licenses.count).to eql(12)