Merge "Fix function name reference in cinder.service.spec.js"

This commit is contained in:
Jenkins 2015-06-19 16:10:30 +00:00 committed by Gerrit Code Review
commit 4ae89d4c24

View File

@ -65,7 +65,7 @@
// Iterate through the defined tests and apply as Jasmine specs.
angular.forEach(tests, function(params) {
it('defines the ' + params.name + ' call properly', function() {
it('defines the ' + params.func + ' call properly', function() {
var callParams = [apiService, service, toastService, params];
window.apiTest.testCall.apply(this, callParams);
});