Add mini test compatibility.

This commit is contained in:
Cristiano Ferreira
2024-01-22 17:10:22 +00:00
parent 1591f8d9fb
commit 6c03e3590c
5 changed files with 141 additions and 86 deletions

View File

@@ -1,5 +1,7 @@
import uuid
from helper.constants import *
def getListeningTemplate():
return {
@@ -34,7 +36,7 @@ def getListeningTemplate():
},
],
"isDiagnostic": False,
"minTimer": 30,
"minTimer": LISTENING_MIN_TIMER_DEFAULT,
"module": "listening"
}
@@ -1180,7 +1182,7 @@ def getSpeakingTemplate():
}
],
"isDiagnostic": False,
"minTimer": 14,
"minTimer": SPEAKING_MIN_TIMER_DEFAULT,
"module": "speaking"
}
@@ -1242,7 +1244,7 @@ def getWritingTemplate():
}
],
"isDiagnostic": False,
"minTimer": 60,
"minTimer": WRITING_MIN_TIMER_DEFAULT,
"module": "writing",
"type": "general"
}