Skip to content
Snippets Groups Projects
Unverified Commit 3c654234 authored by Michael Youngstrom's avatar Michael Youngstrom Committed by GitHub
Browse files

Merge pull request #18922 from edx/youngstrom/timeout-test-change

Bump timeout on sample_function_1 test
parents 7affa237 d5f9f2b3
Branches
Tags release-2020-12-01-10.46
No related merge requests found
...@@ -10,9 +10,8 @@ from pavelib.utils.decorators import ( ...@@ -10,9 +10,8 @@ from pavelib.utils.decorators import (
def test_function_under_timeout(): def test_function_under_timeout():
@timeout(1) @timeout(2)
def sample_function_1(): def sample_function_1():
time.sleep(0.1)
return "sample text" return "sample text"
value = sample_function_1() value = sample_function_1()
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment