Browse Source

Fix arrow function this ref

Lucas de Souza 5 năm trước cách đây
mục cha
commit
a8fc30b133
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      js/assessment/ivprogAssessment.js

+ 1 - 1
js/assessment/ivprogAssessment.js

@@ -29,7 +29,7 @@ export class IVProgAssessment {
         return this.partialEvaluateTestCase(new IVProgProcessor(validTree), t.input, t.output, name);
       });
       const testResult = partialTests.reduce((acc, curr) => acc.then(curr), Promise.resolve(0));
-      return testResult.then(total => {
+      return testResult.then(function (){
         const grade = total / this.testCases.length;
         const channel = grade == 1 ? DOMConsole.INFO : DOMConsole.ERR;
         this.writeToConsole(channel, StringTypes.MESSAGE, "test_suite_grade", grade * 100);