| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 56adebf commit 13253a3
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -31,14 +31,14 @@ const spawn = require('child_process').spawn; | |||
| 31 | 31 | let grep, sed, echo; | |
| 32 | 32 | ||
| 33 | 33 | if (common.isWindows) { | |
| 34 | - grep = spawn('grep', ['--binary', 'o']), | ||
| 35 | - sed = spawn('sed', ['--binary', 's/o/O/']), | ||
| 34 | + grep = spawn('grep', ['--binary', 'o']); | ||
| 35 | + sed = spawn('sed', ['--binary', 's/o/O/']); | ||
| 36 | 36 | echo = spawn('cmd.exe', | |
| 37 | 37 | ['/c', 'echo', 'hello&&', 'echo', | |
| 38 | 38 | 'node&&', 'echo', 'and&&', 'echo', 'world']); | |
| 39 | 39 | } else { | |
| 40 | - grep = spawn('grep', ['o']), | ||
| 41 | - sed = spawn('sed', ['s/o/O/']), | ||
| 40 | + grep = spawn('grep', ['o']); | ||
| 41 | + sed = spawn('sed', ['s/o/O/']); | ||
| 42 | 42 | echo = spawn('echo', ['hello\nnode\nand\nworld\n']); | |
| 43 | 43 | } | |
| 44 | 44 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -25,7 +25,7 @@ connect({ | |||
| 25 | 25 | const peer = pair.client.conn.getPeerCertificate(); | |
| 26 | 26 | debug('peer:\n', peer); | |
| 27 | 27 | assert.strictEqual(peer.subject.emailAddress, 'adam.lippai@tresorit.com'); | |
| 28 | - assert.strictEqual(peer.subject.CN, 'Ádám Lippai'), | ||
| 28 | + assert.strictEqual(peer.subject.CN, 'Ádám Lippai'); | ||
| 29 | 29 | assert.strictEqual(peer.issuer.CN, 'ca3'); | |
| 30 | 30 | assert.strictEqual(peer.serialNumber, 'D0082F458B6EFBE8'); | |
| 31 | 31 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments