]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
java/test: ceph.file.layout xattr is still not there now
authorGreg Farnum <greg@inktank.com>
Mon, 31 Mar 2014 20:17:22 +0000 (13:17 -0700)
committerSage Weil <sage@inktank.com>
Mon, 31 Mar 2014 21:05:37 +0000 (14:05 -0700)
b8ea65694faf59f12f285a65dc21753dab20ba11 tried to fix this, but
missed a spot.

Signed-off-by: Greg Farnum <greg@inktank.com>
Reviewed-by: Sage Weil <sage@inktank.com>
src/java/test/com/ceph/fs/CephMountTest.java

index e917dcc4bd7606f1f14dce4128485072fd6bd3fc..82c3f1b64579e14f14af32a8def5dce05bc6154f 100644 (file)
@@ -826,7 +826,7 @@ public class CephMountTest {
 
     /* list xattrs */
     String[] xattrs = mount.listxattr(path);
-    assertTrue(xattrs.length == 3);
+    assertTrue(xattrs.length == 2);
     int found = 0;
     for (String xattr : xattrs) {
       if (xattr.compareTo("user.attr1") == 0) {