Skip to content

Commit

Permalink
Merge 9f43519 into 3b57fac
Browse files Browse the repository at this point in the history
  • Loading branch information
yarikoptic committed Jan 10, 2019
2 parents 3b57fac + 9f43519 commit bbea7ee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion nipy/fixes/numpy/testing/nosetester.py
Expand Up @@ -21,7 +21,8 @@ def get_package_name(filepath):
Examples
--------
>>> np.testing.nosetester.get_package_name('nonsense')
>>> from numpy.testing import nosetester
>>> nosetester.get_package_name('nonsense')
'numpy'
"""
Expand Down
3 changes: 1 addition & 2 deletions nipy/modalities/fmri/tests/test_aliases.py
Expand Up @@ -42,9 +42,8 @@ def test_implemented_function():
assert_equal(l2(3), np.sqrt(3))
# check that we can pass in a sympy function as input
func = sympy.Function('myfunc')
assert_false(hasattr(func, '_imp_'))
f = implemented_function(func, lambda x: 2*x)
assert_true(hasattr(func, '_imp_'))
assert(f)


def test_lambdify():
Expand Down

0 comments on commit bbea7ee

Please sign in to comment.