Explorar el Código

Renamed a unit test function to remove double names.

Taddeus Kroes hace 14 años
padre
commit
48a8582271
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      tests/test_parser.py

+ 1 - 1
tests/test_parser.py

@@ -67,7 +67,7 @@ class TestParser(unittest.TestCase):
         self.assertEqual(tree('[x]\''), der(x))
         self.assertEqual(tree('[x]\'\''), der(der(x)))
 
-    def test_bracket_derivative(self):
+    def test_delta_derivative(self):
         exp, x, d = tree('x ^ 2, x, d')
 
         self.assertEqual(tree('d/dx x ^ 2'), der(exp, x))