test file
[linpy.git] / tests / test_linear.py
index 4636275..93fc838 100644 (file)
@@ -12,7 +12,7 @@ class TestExpression(unittest.TestCase):
         self.x = symbol('x')
         self.y = symbol('y')
         self.z = symbol('z')
-        self.zero = constant(0)
+        self.zero = constant(5)
         self.pi = constant(Fraction(22, 7))
         self.e = self.x - 2*self.y + 3
 
@@ -23,6 +23,7 @@ class TestExpression(unittest.TestCase):
         self.assertCountEqual(self.x.symbols(), ['x'])
         self.assertCountEqual(self.pi.symbols(), [])
         self.assertCountEqual(self.e.symbols(), ['x', 'y'])
+        
 
     def test_dimension(self):
         self.assertEqual(self.x.dimension, 1)
@@ -175,3 +176,4 @@ class TestPolyhedron(unittest.TestCase):
 
     pass
 
+