Remove /v2/ as that should now be part of config url

This commit is contained in:
Mike Larsson 2013-05-17 11:14:53 -04:00
Родитель ba23cd2751
Коммит 19d857ac22
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -97,7 +97,7 @@ var openbadger = new Api(ENDPOINT, {
},
getOrgs: function getOrgs (query, callback) {
this.get('/v2/issuers/', function(err, data) {
this.get('/issuers/', function(err, data) {
if (err)
return callback(err, data);

Просмотреть файл

@ -243,7 +243,7 @@ test('getIssuers', function(t) {
t.same(data.orgs.length, 2, 'data length');
var org = data.orgs[0];
t.ok(org.url && org.name, 'needed data');
t.ok(getStub.calledWithMatch('/v2/issuers'), 'endpoint');
t.ok(getStub.calledWithMatch('/issuers'), 'endpoint');
t.end();
});
});