Index: trunk/Nebulous/t/63_client_stat.t
===================================================================
--- trunk/Nebulous/t/63_client_stat.t	(revision 24572)
+++ trunk/Nebulous/t/63_client_stat.t	(revision 24644)
@@ -10,5 +10,5 @@
 use Apache::Test qw( -withtestmore );
 
-plan tests => 12;
+plan tests => 13;
 
 use lib qw( ./t ./lib );
@@ -30,5 +30,5 @@
     my $info = $neb->stat( "foo" );
 
-    is( scalar @$info, 7, "number of columns" );
+    is( scalar @$info, 8, "number of columns" );
 }
 
@@ -43,5 +43,5 @@
     my $info = $neb->stat( "foo" );
 
-    is( scalar @$info, 7,                       "number of columns" );
+    is( scalar @$info, 8,                       "number of columns" );
     is( @$info[0], 1,                           "so_id" );
     is( @$info[1], "foo",                       "ext_id" );
@@ -50,5 +50,6 @@
     like( @$info[4], qr/....-..-.. ..:..:../,   "epoch" );
     like( @$info[5], qr/....-..-.. ..:..:../,   "mtime" );
-    is( @$info[6], 1,                           "instances" );
+    is( @$info[6], 1,                           "available instances" );
+    is( @$info[7], 1,                           "total instances" );
 }
 
