summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-07-07 23:28:02 +0200
committerVictor Stinner <victor.stinner@gmail.com>2014-07-07 23:28:02 +0200
commit69686f82c0fad642fc04f2257ac006adf6cc3ac5 (patch)
tree7787dfcbf393650c1984d752601984d9ee86b173 /tests
parent3aefec26e1b78ed42ec2b5147eb4bd8e16d55532 (diff)
downloadtrollius-69686f82c0fad642fc04f2257ac006adf6cc3ac5.tar.gz
fix typo in the name of a test function
Diffstat (limited to 'tests')
-rw-r--r--tests/test_futures.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_futures.py b/tests/test_futures.py
index a6071ea..157adb7 100644
--- a/tests/test_futures.py
+++ b/tests/test_futures.py
@@ -301,12 +301,12 @@ class FutureTests(test_utils.TestCase):
def test_future_exception_never_retrieved(self, m_log):
self.loop.set_debug(True)
- def memroy_error():
+ def memory_error():
try:
raise MemoryError()
except BaseException as exc:
return exc
- exc = memroy_error()
+ exc = memory_error()
future = asyncio.Future(loop=self.loop)
source_traceback = future._source_traceback