From f178c6856d06ffbe2140b67bb3b798779617b945 Mon Sep 17 00:00:00 2001 From: rusrushal13 Date: Wed, 29 Apr 2020 15:28:09 +0530 Subject: [PATCH] Add a missing import and remove an unused import This will fix the failing quality checks and also the integration tests. --- problem_builder/tests/integration/base_test.py | 1 - problem_builder/tests/integration/test_completion.py | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/problem_builder/tests/integration/base_test.py b/problem_builder/tests/integration/base_test.py index 49156720..ca504ffc 100644 --- a/problem_builder/tests/integration/base_test.py +++ b/problem_builder/tests/integration/base_test.py @@ -17,7 +17,6 @@ # along with this program in a file in the toplevel directory called # "AGPLv3". If not, see . # -import time from unittest import mock from xblock.fields import String diff --git a/problem_builder/tests/integration/test_completion.py b/problem_builder/tests/integration/test_completion.py index 71e1e062..6fb3922d 100644 --- a/problem_builder/tests/integration/test_completion.py +++ b/problem_builder/tests/integration/test_completion.py @@ -19,6 +19,7 @@ # # Imports ########################################################### +import time from .base_test import (GetChoices, MentoringAssessmentBaseTest, ProblemBuilderBaseTest)