From 8981bdaf6271d9a0800af0c21bb7e5b63278d226 Mon Sep 17 00:00:00 2001 From: David Wood Date: Fri, 18 Nov 2011 12:07:22 -0600 Subject: [PATCH] For consistency, updated 'Service Net' to 'ServiceNet' (although Rackspace uses both) --- test/servicenet-test.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/servicenet-test.js b/test/servicenet-test.js index 8f378ce..6a2fe2b 100644 --- a/test/servicenet-test.js +++ b/test/servicenet-test.js @@ -24,7 +24,7 @@ var client = helpers.createClient(), vows.describe('node-cloudfiles/servicenet').addBatch({ "The node-cloudfiles client": { - "with valid credentials and not specifying Service Net transfer": { + "with valid credentials and not specifying ServiceNet transfer": { topic: function () { client.setAuth(this.callback); }, @@ -36,12 +36,12 @@ vows.describe('node-cloudfiles/servicenet').addBatch({ assert.include(res.headers, 'x-cdn-management-url'); assert.include(res.headers, 'x-auth-token'); }, - "should update the config with non-Service Net storage url": function (err, res) { + "should update the config with non-ServiceNet storage url": function (err, res) { assert.equal(res.headers['x-storage-url'], client.config.storageUrl); assert.ok(client.config.storageUrl.substring(0, 13) != 'https://snet-'); } }, - "with valid credentials and specifying Service Net transfer": { + "with valid credentials and specifying ServiceNet transfer": { topic: function () { snClient.setAuth(this.callback); }, @@ -53,7 +53,7 @@ vows.describe('node-cloudfiles/servicenet').addBatch({ assert.include(res.headers, 'x-cdn-management-url'); assert.include(res.headers, 'x-auth-token'); }, - "should update the config with non-Service Net storage url": function (err, res) { + "should update the config with non-ServiceNet storage url": function (err, res) { assert.notEqual(res.headers['x-storage-url'], snClient.config.storageUrl); assert.ok(snClient.config.storageUrl.substring(0, 13) == 'https://snet-'); }