]> CRI, Mines Paris - PSL - linpy.git/blobdiff - pypol/tests/test_polyhedra.py
Support for dummy symbols
[linpy.git] / pypol / tests / test_polyhedra.py
index c7a58a4520930b7b7b063766ede2f8088d4a5d3b..cb2015f5a64082428c0ec55e697c1641e8568e25 100644 (file)
@@ -13,7 +13,7 @@ class TestPolyhedron(unittest.TestCase):
         self.square = Polyhedron(inequalities=[x, 1 - x, y, 1 - y])
 
     def test_symbols(self):
-        self.assertCountEqual(self.square.symbols, ['x', 'y'])
+        self.assertCountEqual(self.square.symbols, symbols('x y'))
 
     def test_dimension(self):
         self.assertEqual(self.square.dimension, 2)