| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent f0c871b commit 6cff57e
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -63,8 +63,8 @@ function randomPipePath() { | |||
| 63 | 63 | }, common.mustCall(() => { | |
| 64 | 64 | if (process.platform !== 'win32') { | |
| 65 | 65 | const mode = fs.statSync(handlePath).mode; | |
| 66 | - assert.ok(mode & fs.constants.S_IROTH !== 0); | ||
| 67 | - assert.ok(mode & fs.constants.S_IWOTH !== 0); | ||
| 66 | + assert.notStrictEqual(mode & fs.constants.S_IROTH, 0); | ||
| 67 | + assert.notStrictEqual(mode & fs.constants.S_IWOTH, 0); | ||
| 68 | 68 | } | |
| 69 | 69 | srv.close(); | |
| 70 | 70 | })); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments