summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Johnston <wjohnston@mpr.org>2016-05-24 13:53:37 -0500
committerWilliam Johnston <wjohnston@mpr.org>2016-05-24 13:53:37 -0500
commit6876a4fb50e7989e7c2294e6033975d22a7bd9e2 (patch)
tree47de46df890f33577a070a5f6753093ced73e66d
parentb01b5f9ac94a9d0ba1df86ad077582fc1df942d2 (diff)
downloadbundler-6876a4fb50e7989e7c2294e6033975d22a7bd9e2.tar.gz
Ack, forgot Rubocop
-rw-r--r--spec/bundler/fetcher/compact_index_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/bundler/fetcher/compact_index_spec.rb b/spec/bundler/fetcher/compact_index_spec.rb
index 9b480f6b11..72fe3bbc37 100644
--- a/spec/bundler/fetcher/compact_index_spec.rb
+++ b/spec/bundler/fetcher/compact_index_spec.rb
@@ -10,7 +10,7 @@ describe Bundler::Fetcher::CompactIndex do
# Testing private method. Do not commit.
describe '#specs_for_names' do
it "has only one thread open at the end of the run" do
- compact_index.specs_for_names(['lskdjf'])
+ compact_index.specs_for_names(["lskdjf"])
thread_count = Thread.list.select {|thread| thread.status == "run" }.count
expect(thread_count).to eq 1
@@ -19,7 +19,7 @@ describe Bundler::Fetcher::CompactIndex do
it "calls worker#stop during the run" do
expect_any_instance_of(Bundler::Worker).to receive(:stop).at_least(:once)
- compact_index.specs_for_names(['lskdjf'])
+ compact_index.specs_for_names(["lskdjf"])
end
end
end