From: Matt S Trout <mst@shadowcat.co.uk>
Date: Thu, 31 May 2012 19:58:22 +0000 (+0000)
Subject: make test not require ssh
X-Git-Tag: v0.001001~41
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=97c80c7615102e500c162597807f7eaa3905891d;p=scpubgit%2FObject-Remote.git

make test not require ssh
---

diff --git a/t/bridged.t b/t/bridged.t
index 2c4c24b..a244867 100644
--- a/t/bridged.t
+++ b/t/bridged.t
@@ -8,7 +8,7 @@ use lib "$FindBin::Bin/lib";
 use Object::Remote;
 
 is exception {
-  my $bridge = ORTestBridge->new::on('localhost');
+  my $bridge = ORTestBridge->new::on('-'); #'localhost');
   is $bridge->call('counter'), 0;
   $bridge->call('increment');
   is $bridge->call('counter'), 1;