Skip to content

Commit

Permalink
chore: upgrade uuid@^9.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mmarchini committed Nov 29, 2022
1 parent 50bfac7 commit c944080
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -112,7 +112,7 @@
"semver": "^6.1.1",
"send": "^0.17.1",
"spdy": "^4.0.0",
"uuid": "^3.3.2",
"uuid": "^9.0.0",
"vasync": "^2.2.0"
},
"optionalDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion test/server.test.js
Expand Up @@ -108,7 +108,7 @@ test('listen and close (port only) w/ port number as string', function(t) {

test('listen and close (socketPath)', function(t) {
var server = restify.createServer();
server.listen('/tmp/.' + uuid(), function() {
server.listen('/tmp/.' + uuid.v4(), function() {
server.close(function() {
t.end();
});
Expand Down

0 comments on commit c944080

Please sign in to comment.