Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2013-10-28 22:18:21 +0400
committerisaacs <i@izs.me>2013-10-28 22:18:41 +0400
commit2243eee870a9b01ce26a6bd9f39a07d16b6d9fe8 (patch)
tree4c23e76c50b3e857b0295f0a059ea10084eca70c /node_modules/semver/test/index.js
parent5b95751baf31aae4e08821f87016b63db567d461 (diff)
semver@2.2.1
Diffstat (limited to 'node_modules/semver/test/index.js')
-rw-r--r--node_modules/semver/test/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/node_modules/semver/test/index.js b/node_modules/semver/test/index.js
index 5b488b2f8..e6c9cefb0 100644
--- a/node_modules/semver/test/index.js
+++ b/node_modules/semver/test/index.js
@@ -542,7 +542,7 @@ test('\nstrict vs loose ranges', function(t) {
test('\nmax satisfying', function(t) {
[[['1.2.3', '1.2.4'], '1.2', '1.2.4'],
[['1.2.4', '1.2.3'], '1.2', '1.2.4'],
- [['1.2.3','1.2.4','1.2.5','1.2.6'], '~1.2.3', '1.2.6'],
+ [['1.2.3', '1.2.4', '1.2.5', '1.2.6'], '~1.2.3', '1.2.6'],
[['1.1.0', '1.2.0', '1.2.1', '1.3.0', '2.0.0b1', '2.0.0b2', '2.0.0b3', '2.0.0', '2.1.0'], '~2.0.0', '2.0.0', true]
].forEach(function(v) {
var versions = v[0];