Index: /trunk/Nebulous/nebclient/tests/tests.c
===================================================================
--- /trunk/Nebulous/nebclient/tests/tests.c	(revision 13044)
+++ /trunk/Nebulous/nebclient/tests/tests.c	(revision 13045)
@@ -18,6 +18,6 @@
     plan_tests(22);
 
-    if (getenv("NEBULOUS_SERVER")) {
-        server = nebServerAlloc(getenv("NEBULOUS_SERVER"));
+    if (getenv("NEB_SERVER")) {
+        server = nebServerAlloc(getenv("NEB_SERVER"));
     } else {
         server = nebServerAlloc(NULL);
Index: /trunk/Nebulous/t/90_nebclient.t
===================================================================
--- /trunk/Nebulous/t/90_nebclient.t	(revision 13044)
+++ /trunk/Nebulous/t/90_nebclient.t	(revision 13045)
@@ -3,5 +3,5 @@
 # Copryight (C) 2004-2005  Joshua Hoblitt
 #
-# $Id: 90_nebclient.t,v 1.1 2005-12-03 02:52:31 jhoblitt Exp $
+# $Id: 90_nebclient.t,v 1.2 2007-04-26 22:27:13 jhoblitt Exp $
 
 use strict;
@@ -18,5 +18,5 @@
 Test::Nebulous->setup;
 
-$ENV{'NEBULOUS_SERVER'} = "http://" . Apache::Test->config->{ 'hostport' } . "/nebulous";
+$ENV{'NEB_SERVER'} = "http://" . Apache::Test->config->{ 'hostport' } . "/nebulous";
 
 chdir "./nebclient";
Index: /trunk/Nebulous/t/Test/Nebulous.pm
===================================================================
--- /trunk/Nebulous/t/Test/Nebulous.pm	(revision 13044)
+++ /trunk/Nebulous/t/Test/Nebulous.pm	(revision 13045)
@@ -1,5 +1,5 @@
 # Copyright (C) 2004  Joshua Hoblitt
 #
-# $Id: Nebulous.pm,v 1.9 2007-04-23 20:42:29 jhoblitt Exp $
+# $Id: Nebulous.pm,v 1.10 2007-04-26 22:27:13 jhoblitt Exp $
 
 package Test::Nebulous;
@@ -37,5 +37,5 @@
 
     # FIXME
-    $dbh->do(qq{ INSERT INTO volume VALUES (1,'node01',?) }, undef, $dir1);
+    $dbh->do(qq{ INSERT INTO volume VALUES (1, 'node01',?) }, undef, $dir1);
     $dbh->do(qq{ INSERT INTO mount VALUES (?, 10e10, 10e7) }, undef, $dir1);
 
@@ -43,5 +43,6 @@
     $dbh->do(qq{ INSERT INTO mount VALUES (?, 10e10, 10e10) }, undef, $dir2);
 
-    $dbh->do(qq{ INSERT INTO class VALUES (0, 0, "regular data") });
+#   class ID 0 should be setup by default
+#    $dbh->do(qq{ INSERT INTO class VALUES (0, 0, "regular data") });
     $dbh->do(qq{ INSERT INTO class VALUES (1, 1, "special data") });
 }
