minor changes BLD200210140100
authormmatula@netbeans.org
Sat, 12 Oct 2002 23:10:17 +0000
changeset 10822cf40fb3dbbb
parent 1081 c3f922ffdcd6
child 1083 639a4b4f4620
minor changes
mdr/test/unit/src/org/netbeans/mdr/test/FederationTest.java
     1.1 --- a/mdr/test/unit/src/org/netbeans/mdr/test/FederationTest.java	Sat Oct 12 22:37:22 2002 +0000
     1.2 +++ b/mdr/test/unit/src/org/netbeans/mdr/test/FederationTest.java	Sat Oct 12 23:10:17 2002 +0000
     1.3 @@ -248,11 +248,11 @@
     1.4          }
     1.5          
     1.6          int extentCount = repository.getExtentNames().length;
     1.7 -        // 5th stage of test: Umount partitions
     1.8 +        // 5th stage of test: Unmount partitions
     1.9          for (int i=0; i < PART_COUNT; i++)
    1.10 -            umount(storageIds[i]);
    1.11 +            unmount(storageIds[i]);
    1.12          if (extentCount != (repository.getExtentNames().length + PART_COUNT))
    1.13 -            fail("Invalid number of extents after umount");
    1.14 +            fail("Invalid number of extents after unmount");
    1.15          
    1.16          //6th stage of test: Remount partitions
    1.17          extentCount = repository.getExtentNames().length;
    1.18 @@ -318,8 +318,8 @@
    1.19          }
    1.20      }
    1.21      
    1.22 -    private void umount(String storageId) {
    1.23 -        ((NBMDRepositoryImpl)this.repository).umountStorage(storageId);
    1.24 +    private void unmount(String storageId) {
    1.25 +        ((NBMDRepositoryImpl)this.repository).unmountStorage(storageId);
    1.26      }
    1.27      
    1.28      public static NbTest suite() {