Index: trunk/psLib/test/collections/tst_psMetadata_02.c
===================================================================
--- trunk/psLib/test/collections/tst_psMetadata_02.c	(revision 1460)
+++ trunk/psLib/test/collections/tst_psMetadata_02.c	(revision 1461)
@@ -8,13 +8,12 @@
 *     Test C - Attempt to create metadata item with invalid type
 *     Test D - Allocate metadata
-*     Test E - Attempt add metadata item to null metadata
-*     Test F - Attempt add null metadata item to metadata
-*     Test G - Attempt to add folder metadata item that already exists
-*     Test H - Free psMetadata
+*     Test E - Attempt to add metadata item to null metadata
+*     Test F - Attempt to add null metadata item to metadata
+*     Test G - Free psMetadata
 *
 *  @author  Ross Harman, MHPCC
 *
-*  @version $Revision: 1.2 $  $Name: not supported by cvs2svn $
-*  @date  $Date: 2004-08-06 22:34:05 $
+*  @version $Revision: 1.3 $  $Name: not supported by cvs2svn $
+*  @date  $Date: 2004-08-10 23:49:50 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -108,28 +107,19 @@
 
     // Test E - Attempt add metadata item to null metadata
-    printNegativeTestHeader(stdout,"psMetadata", "Test E - Attempt add metadata item to null metadata",
+    printNegativeTestHeader(stdout,"psMetadata", "Test E - Attempt to add metadata item to null metadata",
                             "Null metadata collection not allowed", 0);
     psMetadataAddItem(NULL, PS_LIST_HEAD, item1);
-    printFooter(stdout, "psMetadata", "Test E - Attempt add metadata item to null metadata", true);
+    printFooter(stdout, "psMetadata", "Test E - Attempt to add metadata item to null metadata", true);
 
 
     // Test F - Attempt add null metadata item to metadata
-    printNegativeTestHeader(stdout,"psMetadata", "Test F - Attempt add null metadata item to metadata",
+    printNegativeTestHeader(stdout,"psMetadata", "Test F - Attempt to add null metadata item to metadata",
                             "Null metadata item not allowed", 0);
     psMetadataAddItem(metadata, PS_LIST_HEAD, NULL);
-    printFooter(stdout, "psMetadata", "Test F - Attempt add null metadata item to metadata", true);
+    printFooter(stdout, "psMetadata", "Test F - Attempt to add null metadata item to metadata", true);
 
 
-    // Test G - Attempt to add folder metadata item that already exists
-    printNegativeTestHeader(stdout,"psMetadata", "Test H - Attempt to add folder metadata item that already exists",
-                            "Medatdata item exists in metadata collection. Item not added. Name: myItem2", 0);
-    item2->type = PS_META_ITEM_SET;
-    psMetadataAddItem(metadata, PS_LIST_HEAD, item2);
-    psMetadataAddItem(metadata, PS_LIST_HEAD, item2);
-    printFooter(stdout, "psMetadata", "Test H - Attempt to add folder metadata item that already exists", true);
-
-
-    // Test H - Free psMetadata
-    printPositiveTestHeader(stdout, "psMetadata", "Test - Free psMetadata");
+    // Test G - Free psMetadata
+    printPositiveTestHeader(stdout, "psMetadata", "Test G - Free psMetadata");
     psFree(item1);
     psFree(item2);
@@ -145,5 +135,5 @@
         printf("ERROR: Found %d bad memory blocks\n", nBad);
     }
-    printFooter(stdout, "psMetadata", "Test - Free psMetadata", true);
+    printFooter(stdout, "psMetadata", "Test G - Free psMetadata", true);
 
     return 0;
