X-Git-Url: https://scm.cri.minesparis.psl.eu/git/linpy.git/blobdiff_plain/50f0fde4dca3f10e535314b1c9d325cd9283735b..3c9e6c7cd0631426b79a28c9b15f8d40e01cec4c:/linpy/tests/test_domains.py?ds=sidebyside

diff --git a/linpy/tests/test_domains.py b/linpy/tests/test_domains.py
index 9e9f6fa..0955a09 100644
--- a/linpy/tests/test_domains.py
+++ b/linpy/tests/test_domains.py
@@ -53,9 +53,9 @@ class TestDomain(unittest.TestCase):
             Polyhedron(1)
 
     def test_disjoint(self):
-        self.assertEqual(self.square1.disjoint(), self.disjoint)
-        self.assertEqual(self.empty.disjoint(), Empty)
-        self.assertEqual(self.universe.disjoint(), self.universe)
+        self.assertEqual(self.square1.make_disjoint(), self.disjoint)
+        self.assertEqual(self.empty.make_disjoint(), Empty)
+        self.assertEqual(self.universe.make_disjoint(), self.universe)
 
     def test_isempty(self):
         self.assertFalse(self.square1.isempty())