1
0
Fork 0
mirror of https://github.com/kbparagua/paloma synced 2023-03-27 23:21:17 -04:00

Fix js specs

This commit is contained in:
kbparagua 2016-03-03 00:10:21 +08:00
parent ddb82e9d5a
commit 7e0dc8c4b3
2 changed files with 4 additions and 4 deletions

View file

@ -1,7 +1,7 @@
describe('Paloma.ControllerFactory', function(){
var router = new Paloma.Router({namespace: '/', action: '#'});
var router = new Paloma.Router({namespaceDelimiter: '/'});
describe('#make(name)', function(){
@ -45,4 +45,4 @@ describe('Paloma.ControllerFactory', function(){
});
});
});

View file

@ -1,7 +1,7 @@
describe('Paloma.Router', function(){
var delimiter = '/',
router = new Paloma.Router(delimiter);
router = new Paloma.Router({namespaceDelimiter: delimiter});
describe('#parse(path)', function(){
@ -49,4 +49,4 @@ describe('Paloma.Router', function(){
});
});
});