Skip to content

Commit

Permalink
Latest AS7 seems to fix the reason we did this in the first place -- …
Browse files Browse the repository at this point in the history
…stupid jndi.
  • Loading branch information
jcrossley3 committed Jul 5, 2011
1 parent 5dd41f1 commit 41c9b24
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion spec/empty_spec.rb
Expand Up @@ -4,7 +4,7 @@

it "should work" do
require 'torquebox/messaging/queue'
queue = TorqueBox::Messaging::Queue.start('/queues/foo', :jndi => "")
queue = TorqueBox::Messaging::Queue.start('/queues/foo')
queue.publish('bar')
queue.receive.should == 'bar'
queue.stop
Expand Down
2 changes: 1 addition & 1 deletion spec/remote_spec.rb
Expand Up @@ -18,7 +18,7 @@

it "should work" do
require 'torquebox/messaging/queue'
queue = TorqueBox::Messaging::Queue.start('/queues/foo', :jndi => "")
queue = TorqueBox::Messaging::Queue.start('/queues/foo')
queue.publish('bar')
queue.receive.should == 'bar'
queue.stop
Expand Down

0 comments on commit 41c9b24

Please sign in to comment.