Skip to content

Commit

Permalink
Shift issue numbering in function names like test_bug123
Browse files Browse the repository at this point in the history
(see #7235)

fixes #8286
  • Loading branch information
Sergey B Kirpichev committed Oct 21, 2014
1 parent 86e3ab0 commit 19dffba
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion sympy/core/tests/test_equal.py
Expand Up @@ -63,7 +63,7 @@ class T(object):
assert (Symbol != t)


def test_cmp_bug1258():
def test_cmp_issue_4357():
""" Check that Basic subclasses can be compared with sympifiable objects.
https://github.com/sympy/sympy/issues/4357
Expand Down
2 changes: 1 addition & 1 deletion sympy/core/tests/test_sympify.py
Expand Up @@ -225,7 +225,7 @@ def test_sage():
assert hasattr(log(x), "_sage_")


def test_bug496():
def test_issue_3595():
assert sympify("a_") == Symbol("a_")
assert sympify("_a") == Symbol("_a")

Expand Down
4 changes: 0 additions & 4 deletions sympy/series/tests/test_limits.py
Expand Up @@ -209,10 +209,6 @@ def test_doit2():
assert l.doit(deep=False) == l


def test_bug693a():
assert sin(sin(x + 1) + 1).limit(x, 0) == sin(sin(1) + 1)


def test_issue_3792():
assert limit( (1 - cos(x))/x**2, x, S(1)/2) == 4 - 4*cos(S(1)/2)
assert limit(sin(sin(x + 1) + 1), x, 0) == sin(1 + sin(1))
Expand Down

0 comments on commit 19dffba

Please sign in to comment.