Index: trunk/Nebulous/t/11_client_create.t
===================================================================
--- trunk/Nebulous/t/11_client_create.t	(revision 4440)
+++ trunk/Nebulous/t/11_client_create.t	(revision 5662)
@@ -3,5 +3,5 @@
 # Copryight (C) 2004-2005  Joshua Hoblitt
 #
-# $Id: 11_client_create.t,v 1.4 2005-06-30 02:35:06 jhoblitt Exp $
+# $Id: 11_client_create.t,v 1.5 2005-12-03 02:26:59 jhoblitt Exp $
 
 use strict;
@@ -28,7 +28,7 @@
     );
 
-    my $fh = $neb->create( "foo" );
+    my $filename = $neb->create( "foo" );
 
-    is( ref $fh, 'GLOB', "good filehandle" );
+    ok( -e $filename, "good filename" );
 }
 
@@ -41,7 +41,7 @@
     );
 
-    my $fh = $neb->create( "foo", 0 );
+    my $filename = $neb->create( "foo", 0 );
 
-    is( ref $fh, 'GLOB', "good filehandle" );
+    ok( -e $filename, "good filename" );
 }
 
@@ -54,7 +54,7 @@
     );
 
-    my $fh = $neb->create( "foo", 0, "node01" );
+    my $filename = $neb->create( "foo", 0, "node01" );
 
-    is( ref $fh, 'GLOB', "good filehandle" );
+    ok( -e $filename, "good filename" );
 }
 
@@ -67,7 +67,7 @@
     );
 
-    my $fh = $neb->create( "foo", 0, "node01", "this is foo" );
+    my $filename = $neb->create( "foo", 0, "node01", "this is foo" );
 
-    is( ref $fh, 'GLOB', "good filehandle" );
+    ok( -e $filename, "good filename" );
 }
 
