File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -25,4 +25,4 @@ matrix:
25
25
- rvm : jruby-head
26
26
- rvm : 1.9.3
27
27
28
- script : " bundle exec rake compile && bundle exec rspec --color --backtrace --tag ~unfinished --seed 1 --format documentation ./spec"
28
+ script : " rake compile && bundle exec rspec --color --backtrace --tag ~unfinished --seed 1 --format documentation ./spec"
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ class Concurrent::Atomic < Concurrent::JavaAtomic
78
78
class Concurrent ::Atomic < Concurrent ::RbxAtomic
79
79
end
80
80
81
- elsif defined? ( CAtomic )
81
+ elsif defined? ( Concurrent :: CAtomic )
82
82
83
83
# @!macro atomic_reference
84
84
class Concurrent ::Atomic < Concurrent ::CAtomic
Original file line number Diff line number Diff line change @@ -154,19 +154,19 @@ module Concurrent
154
154
describe Atomic do
155
155
if TestHelpers . jruby?
156
156
it 'inherits from JavaAtomic' do
157
- expect ( Atomic . ancestors ) . to include ( JavaAtomic )
157
+ expect ( Atomic . ancestors ) . to include ( Concurrent :: JavaAtomic )
158
158
end
159
159
elsif TestHelpers . use_c_extensions?
160
160
it 'inherits from CAtomic' do
161
- expect ( Atomic . ancestors ) . to include ( CAtomic )
161
+ expect ( Atomic . ancestors ) . to include ( Concurrent :: CAtomic )
162
162
end
163
163
elsif TestHelpers . rbx?
164
164
it 'inherits from RbxAtomic' do
165
- expect ( Atomic . ancestors ) . to include ( RbxAtomic )
165
+ expect ( Atomic . ancestors ) . to include ( Concurrent :: RbxAtomic )
166
166
end
167
167
else
168
168
it 'inherits from MutexAtomic' do
169
- expect ( Atomic . ancestors ) . to include ( MutexAtomic )
169
+ expect ( Atomic . ancestors ) . to include ( Concurrent :: MutexAtomic )
170
170
end
171
171
end
172
172
end
You can’t perform that action at this time.
0 commit comments