Index: /trunk/Nebulous-Server/t/03_server_create_object.t
===================================================================
--- /trunk/Nebulous-Server/t/03_server_create_object.t	(revision 16222)
+++ /trunk/Nebulous-Server/t/03_server_create_object.t	(revision 16223)
@@ -3,10 +3,10 @@
 # Copryight (C) 2004-2005  Joshua Hoblitt
 #
-# $Id: 03_server_create_object.t,v 1.21 2008-01-25 01:53:28 jhoblitt Exp $
+# $Id: 03_server_create_object.t,v 1.22 2008-01-25 02:06:08 jhoblitt Exp $
 
 use strict;
 use warnings FATAL => qw( all );
 
-use Test::More tests => 64;
+use Test::More tests => 65;
 
 use lib qw( ./t ./lib );
@@ -229,5 +229,5 @@
 {
     # volume name override
-    my $uri = $neb->create_object("neb://99/foo", "node01");
+    my $uri = $neb->create_object("neb://node02/foo", "node01");
 
     my ($scheme, $auth, $path, $query, $frag) = uri_split($uri);
@@ -321,5 +321,13 @@
     $neb->create_object("neb://99/foo");
 };
-like($@, qr/is not available/, "volume name doesn't exist");
+like($@, qr/is not a valid volume name/, "volume name doesn't exist");
+
+Test::Nebulous->setup;
+
+eval {
+    # volume name override
+    $neb->create_object("neb://99/foo", "node01");
+};
+like($@, qr/is not a valid volume name/, "volume name doesn't exist");
 
 Test::Nebulous->setup;
Index: /trunk/Nebulous/t/03_server_create_object.t
===================================================================
--- /trunk/Nebulous/t/03_server_create_object.t	(revision 16222)
+++ /trunk/Nebulous/t/03_server_create_object.t	(revision 16223)
@@ -3,10 +3,10 @@
 # Copryight (C) 2004-2005  Joshua Hoblitt
 #
-# $Id: 03_server_create_object.t,v 1.21 2008-01-25 01:53:28 jhoblitt Exp $
+# $Id: 03_server_create_object.t,v 1.22 2008-01-25 02:06:08 jhoblitt Exp $
 
 use strict;
 use warnings FATAL => qw( all );
 
-use Test::More tests => 64;
+use Test::More tests => 65;
 
 use lib qw( ./t ./lib );
@@ -229,5 +229,5 @@
 {
     # volume name override
-    my $uri = $neb->create_object("neb://99/foo", "node01");
+    my $uri = $neb->create_object("neb://node02/foo", "node01");
 
     my ($scheme, $auth, $path, $query, $frag) = uri_split($uri);
@@ -321,5 +321,13 @@
     $neb->create_object("neb://99/foo");
 };
-like($@, qr/is not available/, "volume name doesn't exist");
+like($@, qr/is not a valid volume name/, "volume name doesn't exist");
+
+Test::Nebulous->setup;
+
+eval {
+    # volume name override
+    $neb->create_object("neb://99/foo", "node01");
+};
+like($@, qr/is not a valid volume name/, "volume name doesn't exist");
 
 Test::Nebulous->setup;
