Clean Gemfile and perform bundle update

Signed-off-by: Sebastian Serth <Sebastian.Serth@student.hpi.de>
This commit is contained in:
Sebastian Serth
2018-09-11 10:49:36 +02:00
parent 772f4ad204
commit ac31afbd2a
6 changed files with 75 additions and 106 deletions

View File

@ -14,8 +14,8 @@ describe DockerContainerPool do
end
it 'uses thread-safe data structures' do
expect(described_class.instance_variable_get(:@containers)).to be_a(ThreadSafe::Hash)
expect(described_class.instance_variable_get(:@containers)[@execution_environment.id]).to be_a(ThreadSafe::Array)
expect(described_class.instance_variable_get(:@containers)).to be_a(Concurrent::Hash)
expect(described_class.instance_variable_get(:@containers)[@execution_environment.id]).to be_a(Concurrent::Array)
end
describe '.clean_up' do