Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit 910e460

Browse files
committed
Remove unneeded process require
1 parent bcd2432 commit 910e460

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/tree-view-spec.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ _ = require 'underscore-plus'
22
{$, $$} = require 'atom-space-pen-views'
33
fs = require 'fs-plus'
44
path = require 'path'
5-
process = require 'process'
65
temp = require('temp').track()
76
os = require 'os'
87
{buildDragEvents} = require "./event-helpers"
@@ -1333,6 +1332,7 @@ describe "TreeView", ->
13331332
it "should successfully move the file", ->
13341333
# Files cannot contain asterisks on Windows
13351334
return if process.platform is "win32"
1335+
13361336
asteriskFilePath = path.join(dirPath, "test-file-**.txt")
13371337
fs.writeFileSync(asteriskFilePath, "doesn't matter *")
13381338
LocalStorage['tree-view:copyPath'] = JSON.stringify([asteriskFilePath])

0 commit comments

Comments
 (0)