提交 6df46e21 编写于 作者: D Daniel Imms

Fix test on some Windows machine

上级 9f405d09
......@@ -62,7 +62,8 @@ suite('Stream', () => {
stream.readToMatchingString(file, '\n', 10, 100, (error: Error, result: string) => {
assert.equal(error, null);
assert.equal(result, '/*---------------------------------------------------------------------------------------------');
// \r may be present on Windows
assert.equal(result.replace('\r', ''), '/*---------------------------------------------------------------------------------------------');
done();
});
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册