From 9f6b5ce1301d4f081506a2492ea0578f7d4b299e Mon Sep 17 00:00:00 2001
From: Iustin Pop <iustin@k1024.org>
Date: Wed, 11 Dec 2019 21:53:33 +0100
Subject: [PATCH] =?utf8?q?Fix=20one=20more=20unclean=20EQ=20assert?=
 =?utf8?q?=E2=80=A6?=
MIME-Version: 1.0
Content-Type: text/plain; charset=utf8
Content-Transfer-Encoding: 8bit

---
 tests/test_acls.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/test_acls.py b/tests/test_acls.py
index 5ef764b..2272d05 100644
--- a/tests/test_acls.py
+++ b/tests/test_acls.py
@@ -329,7 +329,7 @@ class TestLoad:
     def test_reinit_failure_noop(self):
         a = posix1e.ACL(text=TEXT_0755)
         b = posix1e.ACL(acl=a)
-        assert a == b
+        assert_acl_eq(a, b)
         with pytest.raises(IOError):
             a.__init__(text='foobar')
         assert_acl_eq(a, b)
-- 
2.39.5