@@ -88,13 +88,13 @@ test('acl-check accessDenied() test - default/inherited', function (t) {
88
88
$rdf . parse ( containerAclText , store , containerAcl . uri , 'text/turtle' )
89
89
90
90
result = ! aclLogic . accessDenied ( store , file1 , container , containerAcl , alice , [ ACL ( 'Read' ) ] )
91
- t . ok ( result , 'Alice should have Read acces inherited' )
91
+ t . ok ( result , 'Alice should have Read access inherited' )
92
92
93
93
result = ! aclLogic . accessDenied ( store , file2 , container , containerAcl , alice , [ ACL ( 'Read' ) ] )
94
- t . ok ( result , 'Alice should have Read acces inherited 2' )
94
+ t . ok ( result , 'Alice should have Read access inherited 2' )
95
95
96
96
result = aclLogic . accessDenied ( store , file2 , container , containerAcl , alice , [ ACL ( 'Write' ) ] )
97
- t . ok ( result , 'Alice should NOT have Write acces inherited' )
97
+ t . ok ( result , 'Alice should NOT have Write access inherited' )
98
98
99
99
t . end ( )
100
100
} )
@@ -147,7 +147,7 @@ test('acl-check accessDenied() test - default/inherited', function (t) {
147
147
t . ok ( result , 'Bob should have read access too even with wrong origin - Public' )
148
148
149
149
result = aclLogic . accessDenied ( store , file2 , container , containerAcl , alice , [ ACL ( 'Write' ) ] )
150
- t . ok ( result , 'Alice should NOT have write acces inherited - Public' )
150
+ t . ok ( result , 'Alice should NOT have write access inherited - Public' )
151
151
152
152
t . end ( )
153
153
} )
@@ -168,13 +168,13 @@ test('acl-check accessDenied() test - accessTo', function (t) {
168
168
$rdf . parse ( ACLtext , store , containerAclUrl , 'text/turtle' )
169
169
170
170
var result = aclLogic . accessDenied ( store , container , null , containerAcl , null , [ ACL ( 'Read' ) ] )
171
- t . ok ( result , 'Anonymous should NOT have Read acces to public thing - AuthenticatedAgent' )
171
+ t . ok ( result , 'Anonymous should NOT have Read access to public thing - AuthenticatedAgent' )
172
172
173
173
result = aclLogic . accessDenied ( store , container , null , containerAcl , null , [ ACL ( 'Write' ) ] )
174
- t . ok ( result , 'Anonymous should NOT have Write acces - AuthenticatedAgent' )
174
+ t . ok ( result , 'Anonymous should NOT have Write access - AuthenticatedAgent' )
175
175
176
176
result = ! aclLogic . accessDenied ( store , container , null , containerAcl , bob , [ ACL ( 'Write' ) ] )
177
- t . ok ( result , 'Bob should have Write acces to public write - AuthenticatedAgent' )
177
+ t . ok ( result , 'Bob should have Write access to public write - AuthenticatedAgent' )
178
178
179
179
t . end ( )
180
180
} )
@@ -202,7 +202,7 @@ test('acl-check accessDenied() test - default/inherited', function (t) {
202
202
$rdf . parse ( containerAclText , store , containerAcl . uri , 'text/turtle' )
203
203
204
204
result = aclLogic . accessDenied ( store , file2 , container , containerAcl , alice , [ ACL ( 'Write' ) ] )
205
- t . ok ( result , 'Alice should NOT have write acces inherited - AuthenticatedAgent' )
205
+ t . ok ( result , 'Alice should NOT have write access inherited - AuthenticatedAgent' )
206
206
207
207
t . end ( )
208
208
} )
0 commit comments