Merge pull request #6027 from atom/chrome41

Upgrade to Chrome 41
This commit is contained in:
Cheng Zhao
2015-03-25 10:30:27 +08:00
3 changed files with 4 additions and 4 deletions

View File

@@ -6,6 +6,6 @@
"url": "https://github.com/atom/atom.git"
},
"dependencies": {
"atom-package-manager": "0.149.0"
"atom-package-manager": "0.150.0"
}
}

View File

@@ -17,7 +17,7 @@
"url": "http://github.com/atom/atom/raw/master/LICENSE.md"
}
],
"atomShellVersion": "0.21.3",
"atomShellVersion": "0.22.2",
"dependencies": {
"async": "0.2.6",
"atom-keymap": "^4",

View File

@@ -15,8 +15,8 @@ describe "DefaultDirectoryProvider", ->
provider = new DefaultDirectoryProvider()
tmp = temp.mkdirSync()
nonNormalizedPath = tmp + path.sep + ".." + path.sep + path.basename(tmp)
expect(tmp.contains("..")).toBe false
expect(nonNormalizedPath.contains("..")).toBe true
expect(tmp.includes("..")).toBe false
expect(nonNormalizedPath.includes("..")).toBe true
directory = provider.directoryForURISync(nonNormalizedPath)
expect(directory.getPath()).toEqual tmp