Index: trunk/Nebulous-Server/scripts/bench_test.pl
===================================================================
--- trunk/Nebulous-Server/scripts/bench_test.pl	(revision 3014)
+++ trunk/Nebulous-Server/scripts/bench_test.pl	(revision 4440)
@@ -7,8 +7,8 @@
 
 use Benchmark qw( timethese );
-use PS::IPP::IData::Client;
+use Nebulous::Client;
 
-my $idata = PS::IPP::IData::Client->new(
-    proxy   => 'http://localhost:80/idata'
+my $neb = Nebulous::Client->new(
+    proxy   => 'http://localhost:80/nebulous'
 );
 
@@ -18,7 +18,7 @@
     {
         'create/delete' => sub {
-            my $fh = $idata->create( $key );
+            my $fh = $neb->create( $key );
             close $fh;
-            $idata->delete( $key );
+            $neb->delete( $key );
         },
     }
