Skip to content

Commit 4a590b6

Browse files
committed
Removed intermittently failing deprecated Actor test.
1 parent 047bc12 commit 4a590b6

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

spec/concurrent/actor/actor_spec.rb

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -90,16 +90,17 @@ def act(*message)
9090

9191
context 'exception handling' do
9292

93-
it 'supresses exceptions thrown when handling messages' do
94-
actor = actor_class.new{|msg| raise StandardError }
95-
@thread = Thread.new{ actor.run }
96-
expect {
97-
@thread.join(0.1)
98-
10.times { actor.post(true) }
99-
}.not_to raise_error
100-
actor.stop
101-
end
102-
end
93+
#it 'supresses exceptions thrown when handling messages' do
94+
#pending('intermittently failing; deprecated')
95+
#actor = actor_class.new{|msg| raise StandardError }
96+
#@thread = Thread.new{ actor.run }
97+
#expect {
98+
#@thread.join(0.1)
99+
#10.times { actor.post(true) }
100+
#}.not_to raise_error
101+
#actor.stop
102+
#end
103+
#end
103104

104105
context 'observation' do
105106

0 commit comments

Comments
 (0)