Skip to content

Commit 1248616

Browse files
authored
convert arrow function to normal function
1 parent e12f414 commit 1248616

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/HotTestCases.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ describe("HotTestCases", () => {
2828
const suite = describe(testName, function() {
2929
this.timeout(10000);
3030
});
31-
it(testName + " should compile", done => {
31+
it(testName + " should compile", function(done) {
3232
this.timeout(10000);
3333
const testDirectory = path.join(casesPath, category.name, testName);
3434
const outputDirectory = path.join(

0 commit comments

Comments
 (0)