Skip to content

Commit

Permalink
TST: maxentropy: Don't use 'import *'.
Browse files Browse the repository at this point in the history
  • Loading branch information
warren.weckesser committed Sep 12, 2010
1 parent 31ddbea commit d8c0bcf
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions scipy/maxentropy/tests/test_maxentropy.py
Expand Up @@ -6,9 +6,9 @@
Copyright: Ed Schofield, 2003-2005
"""

from numpy.testing import *
from numpy.testing import assert_almost_equal, TestCase, run_module_suite
from numpy import arange, log, exp, ones
from scipy.maxentropy.maxentropy import *
from scipy.maxentropy.maxentropy import logsumexp

class TestMaxentropy(TestCase):
"""Test whether logsumexp() function correctly handles large
Expand All @@ -29,10 +29,6 @@ def test_logsumexp(self):
desired = 10000.0 + log(n)
assert_almost_equal(logsumexp(b), desired)

def test_simple(self):
# Write me!
pass


if __name__ == "__main__":
run_module_suite()

0 comments on commit d8c0bcf

Please sign in to comment.