fixes several typos

This commit is contained in:
Sven Huester
2018-12-02 14:07:31 +01:00
parent 876c4ff8e0
commit fa961654f3
8 changed files with 17 additions and 17 deletions

View File

@@ -16,7 +16,7 @@ describe('PermissionManager', function() {
});
});
it('should grant a permisson for an origin', function() {
it('should grant a permission for an origin', function() {
const ORIGIN = 'origin';
const PERMISSION = 'permission';
const manager = new PermissionManager(permissionFile);
@@ -33,7 +33,7 @@ describe('PermissionManager', function() {
manager.isGranted(ORIGIN, PERMISSION + '_another').should.be.false;
});
it('should deny a permisson for an origin', function() {
it('should deny a permission for an origin', function() {
const ORIGIN = 'origin';
const PERMISSION = 'permission';
const manager = new PermissionManager(permissionFile);
@@ -50,7 +50,7 @@ describe('PermissionManager', function() {
manager.isDenied(ORIGIN, PERMISSION + '_another').should.be.false;
});
it('should save permissons to the file', function() {
it('should save permissions to the file', function() {
const ORIGIN = 'origin';
const PERMISSION = 'permission';
const manager = new PermissionManager(permissionFile);