diff --git a/test/src/module/storage/posixTest.c b/test/src/module/storage/posixTest.c index e16465df3..c1d37f5b2 100644 --- a/test/src/module/storage/posixTest.c +++ b/test/src/module/storage/posixTest.c @@ -268,7 +268,7 @@ testRun(void) TEST_RESULT_INT(info.mode, 0777, " check mode"); TEST_RESULT_STR(info.linkDestination, NULL, " check link destination"); TEST_RESULT_STR_Z(info.user, "root", " check user"); - TEST_RESULT_STR_Z(info.group, "root", " check group"); + TEST_RESULT_STR_Z(info.group, strEqZ(info.group, "wheel") ? "wheel" : "root", " check group"); storageRemoveP(storageTest, linkName, .errorOnMissing = true);