Remove extra function call in chibitest.

This commit is contained in:
Frank Smit 2015-07-10 15:28:31 +02:00
parent 15936f7438
commit 063a385b70
1 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
"""
chibitest
~~~~~~~~
~~~~~~~~~
chibitest is a simple unit testing module. Less code is less bugs.
Inspired by Oktest, http://www.kuwata-lab.com/oktest/.
@ -125,8 +125,8 @@ class AssertionObject(object):
.format(name, _exc_name(e), e))
def ok(target):
return AssertionObject(target)
# A nicer alias.
ok = AssertionObject
class TestCase(object):