Here's a patch for something in the matrix test I just noticed. I don't know if git send-email can work with Google Groups.
-- You received this message because you are subscribed to the Google Groups "sympy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sympy. To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/a3dd36b1-b24a-492b-bef9-617adbc1aa5b%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
>From e5b8c9a3657d2447c7f2f1b3df089de47d42ba9a Mon Sep 17 00:00:00 2001 From: Connor Behan <[email protected]> Date: Sun, 14 Jun 2015 02:30:18 -0400 Subject: [PATCH] Trivial fix to matrix test This makes the last two lines of the test actually do something. Signed-off-by: Connor Behan <[email protected]> --- csympy/tests/test_matrices.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csympy/tests/test_matrices.py b/csympy/tests/test_matrices.py index 65fa43b..52f5fd2 100644 --- a/csympy/tests/test_matrices.py +++ b/csympy/tests/test_matrices.py @@ -33,7 +33,7 @@ def test_set(): A.set(1, 0, g) assert A.get(1, 0) == g A.set(1, 1, c) - A.get(1, 1) == c + assert A.get(1, 1) == c def test_det(): A = densematrix(2, 2, [1, 2, 3, 4]) -- 2.4.2
