Skip to content

Commit 67e8469

Browse files
committed
Updated references to old repo
1 parent 6f6562c commit 67e8469

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

mbTest/api/http/httpInjectionTest.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ const assert = require('assert'),
247247
});
248248

249249
it('should allow access to the global process object', async function () {
250-
// https://github.com/bbyars/mountebank/issues/134
250+
// https://github.com/mountebank-testing/mountebank/issues/134
251251
const fn = () => ({ body: process.env.USER || 'test' }),
252252
stub = { responses: [{ inject: fn.toString() }] },
253253
request = { protocol, port, stubs: [stub] };

mbTest/api/http/httpProxyStubTest.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ describe('http proxy stubs', function () {
141141
assert.ok(response.headers.location.indexOf('google.') >= 0, response.headers.location);
142142
});
143143

144-
// https://github.com/bbyars/mountebank/issues/600
144+
// https://github.com/mountebank-testing/mountebank/issues/600
145145
it('should handle the connect method', async function () {
146146
const proxy = {
147147
protocol: 'https',
@@ -154,7 +154,7 @@ describe('http proxy stubs', function () {
154154

155155
const response = await clientSecure.responseFor({
156156
host: 'api.github.com',
157-
path: '/repos/bbyars/mountebank/contents/README.md',
157+
path: '/repos/mountebank-testing/mountebank/contents/README.md',
158158
port: 443,
159159
agent: new HttpsProxyAgent({
160160
keepAlive: true,

mbTest/api/http/httpStubTest.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ function merge (defaults, overrides) {
292292
});
293293

294294
it('should correctly set content-length for binary data', async function () {
295-
// https://github.com/bbyars/mountebank/issues/204
295+
// https://github.com/mountebank-testing/mountebank/issues/204
296296
const stub = {
297297
responses: [{
298298
is: {
@@ -329,7 +329,7 @@ function merge (defaults, overrides) {
329329
});
330330

331331
it('should handle JSON null values', async function () {
332-
// https://github.com/bbyars/mountebank/issues/209
332+
// https://github.com/mountebank-testing/mountebank/issues/209
333333
const stub = { responses: [{ is: { body: { name: 'test', type: null } } }] },
334334
request = { protocol, port, stubs: [stub] };
335335
await api.createImposter(request);

src/models/predicates.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ function selectTransform (config, options, logger) {
102102
const stringTransform = options.shouldForceStrings ? forceStrings : combinators.identity;
103103

104104
// use keyCaseSensitive instead of caseSensitive to help "matches" predicates too
105-
// see https://github.com/bbyars/mountebank/issues/361
105+
// see https://github.com/mountebank-testing/mountebank/issues/361
106106
if (!cloned.keyCaseSensitive) {
107107
cloned.jsonpath.selector = cloned.jsonpath.selector.toLowerCase();
108108
}

0 commit comments

Comments
 (0)