From: Greg Farnum Date: Mon, 31 Mar 2014 20:17:22 +0000 (-0700) Subject: java/test: ceph.file.layout xattr is still not there now X-Git-Tag: v0.79~41 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=d3183e313b8a7bb8add159cf1d395a462207c3f8;p=ceph.git java/test: ceph.file.layout xattr is still not there now b8ea65694faf59f12f285a65dc21753dab20ba11 tried to fix this, but missed a spot. Signed-off-by: Greg Farnum Reviewed-by: Sage Weil --- diff --git a/src/java/test/com/ceph/fs/CephMountTest.java b/src/java/test/com/ceph/fs/CephMountTest.java index e917dcc4bd76..82c3f1b64579 100644 --- a/src/java/test/com/ceph/fs/CephMountTest.java +++ b/src/java/test/com/ceph/fs/CephMountTest.java @@ -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) {