Skip to content

Commit

Permalink
Fix convertNewLine indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
louislefevre committed Aug 29, 2021
1 parent 5533563 commit e47fc2d
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions test/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,20 @@ import dedent = require('dedent-js');
const convertNewline = `
import sys
sys.stdout = open(sys.__stdout__.fileno(),
mode=sys.__stdout__.mode,
buffering=1,
encoding=sys.__stdout__.encoding,
errors=sys.__stdout__.errors,
newline='\\n',
closefd=False)
mode=sys.__stdout__.mode,
buffering=1,
encoding=sys.__stdout__.encoding,
errors=sys.__stdout__.errors,
newline='\\n',
closefd=False)
sys.stderr = open(sys.__stderr__.fileno(),
mode=sys.__stderr__.mode,
buffering=1,
encoding=sys.__stderr__.encoding,
errors=sys.__stderr__.errors,
newline='\\n',
closefd=False)
mode=sys.__stderr__.mode,
buffering=1,
encoding=sys.__stderr__.encoding,
errors=sys.__stderr__.errors,
newline='\\n',
closefd=False)
`;

function runWithPlatform(platform: string, callback: () => void): void {
Expand Down

0 comments on commit e47fc2d

Please sign in to comment.