diff options
| author | Robin Edwards <robin.ge@gmail.com> | 2013-03-20 12:24:34 +0000 |
|---|---|---|
| committer | Robin Edwards <robin.ge@gmail.com> | 2013-03-20 12:24:34 +0000 |
| commit | 16e5b660fb5066111afbbd0edc02b0da26cd4b77 (patch) | |
| tree | 44414e6381b5f4620da15aa343a6d9c743bab939 /t/pbc.t | |
| parent | Clean up ws (diff) | |
| download | net-riak-16e5b660fb5066111afbbd0edc02b0da26cd4b77.tar.gz | |
Fix redeclaration warning
Diffstat (limited to 't/pbc.t')
| -rw-r--r-- | t/pbc.t | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -12,14 +12,14 @@ my $r = Net::Riak->new( is $r->client->timeout,30, "timeout defaults to 30"; -my $r = Net::Riak->new( +my $r2 = Net::Riak->new( transport => 'PBC', host => '10.0.0.40', port => 8080, timeout => 2, ); -is $r->client->timeout, 2, "timeout changed"; +is $r2->client->timeout, 2, "timeout changed"; |
