Skip to content

Commit da6dba2

Browse files
committed
fix mixture of tabs and spaces
1 parent d2c3049 commit da6dba2

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

test/binCases/errors/child-compilation-error/test.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
module.exports = function testAssertions(code, stdout, stderr) {
44
code.should.be.eql(2);
55

6-
stdout[0].should.containEql("Hash: ");
7-
stdout[1].should.containEql("Version: ");
8-
stdout[2].should.containEql("Time: ");
9-
stdout[5].should.containEql("./index.js");
10-
stdout[8].should.containEql("ERROR in child compilation");
6+
stdout[0].should.containEql("Hash: ");
7+
stdout[1].should.containEql("Version: ");
8+
stdout[2].should.containEql("Time: ");
9+
stdout[5].should.containEql("./index.js");
10+
stdout[8].should.containEql("ERROR in child compilation");
1111

12-
stderr.should.be.empty();
12+
stderr.should.be.empty();
1313
};

test/binCases/errors/child-compilation-error/webpack.config.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
"use strict";
22

33
module.exports = {
4-
entry: "./index",
5-
output: {
6-
filename: "bundle.js"
7-
},
8-
plugins: [{
4+
entry: "./index",
5+
output: {
6+
filename: "bundle.js"
7+
},
8+
plugins: [{
99
apply(compiler) {
1010
compiler.plugin("make", (compilation, cb) => {
1111
const child = compilation.createChildCompiler("child", {});

0 commit comments

Comments
 (0)