aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh <joshdunn.uwo@gmail.com>2017-06-10 04:00:42 -0400
committerJosh <joshdunn.uwo@gmail.com>2017-06-10 04:00:42 -0400
commitfc25e49ff9c8deab1346216cba1ca4de4552c4b8 (patch)
tree37909f913e4296a776191cd43a8bd88ccb43903b
parent2179ba6a46218af85628ffe373e5f5472f7c0999 (diff)
downloadtimeout-decorator-fc25e49ff9c8deab1346216cba1ca4de4552c4b8.tar.gz
Travis CI fixes 2.0
-rw-r--r--tests/test_timeout_decorator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_timeout_decorator.py b/tests/test_timeout_decorator.py
index cadaf26..2489231 100644
--- a/tests/test_timeout_decorator.py
+++ b/tests/test_timeout_decorator.py
@@ -94,7 +94,7 @@ def test_timeout_custom_exception_message():
def f():
time.sleep(2)
with pytest.raises(TimeoutError, match=message):
- f()
+ f()
def test_timeout_default_exception_message():