summaryrefslogtreecommitdiff
path: root/python/problems/introduction/fast_fingers/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/problems/introduction/fast_fingers/common.py')
-rw-r--r--python/problems/introduction/fast_fingers/common.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/python/problems/introduction/fast_fingers/common.py b/python/problems/introduction/fast_fingers/common.py
index 3c1b138..8ab51ab 100644
--- a/python/problems/introduction/fast_fingers/common.py
+++ b/python/problems/introduction/fast_fingers/common.py
@@ -27,7 +27,9 @@ hint_type = {
}
def test(python, code):
- return 0, 0
+ passed = True
+ hints = [{'id': 'test_results', 'args': {'passed': 0, 'total': 0}}]
+ return passed, hints
def hint(python, code):
# run one test first to see if there are any exceptions