Fix unpack error in import
This commit is contained in:
parent
ab7e879973
commit
b965722e8b
|
|
@ -119,7 +119,7 @@ describe("competenceCertificate.cy.js", () => {
|
|||
.should("contain", "10")
|
||||
.and("contain", "Bewertung freigegeben")
|
||||
.and("contain", "42%")
|
||||
.and("contain", "Nicht Bestanden");
|
||||
.and("contain", "Nicht bestanden");
|
||||
|
||||
// it can open learning content page directly
|
||||
cy.get(
|
||||
|
|
@ -128,7 +128,7 @@ describe("competenceCertificate.cy.js", () => {
|
|||
cy.get('[data-cy="test-result"]')
|
||||
.should("contain", "10 von 24 Punkten")
|
||||
.and("contain", "42%")
|
||||
.and("contain", "Nicht Bestanden");
|
||||
.and("contain", "Nicht bestanden");
|
||||
});
|
||||
|
||||
it("check with finished edoniq test and finished casework", () => {
|
||||
|
|
|
|||
|
|
@ -148,6 +148,7 @@ def upsert_edoniq_test_result(
|
|||
edoniq_extended_time_flag=edoniq_extended_time_flag,
|
||||
validate_submission_update=False,
|
||||
)
|
||||
return None, False
|
||||
|
||||
except Exception as e:
|
||||
logger.warning(
|
||||
|
|
|
|||
Loading…
Reference in New Issue