Skip to content

Commit 63e47bb

Browse files
author
jaxoncreed
committed
Clean up
1 parent 778095a commit 63e47bb

File tree

3 files changed

+1
-24
lines changed

3 files changed

+1
-24
lines changed

config-backup.json

Lines changed: 0 additions & 21 deletions
This file was deleted.

lib/acl-checker.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ class ACLChecker {
3131
// Returns a fulfilled promise when the user can access the resource
3232
// in the given mode, or rejects with an HTTP error otherwise
3333
async can (user, mode) {
34-
console.log('THIS IS THE USER!!!!!!!!!')
35-
console.log(user)
3634
const cacheKey = `${mode}-${user}`
3735
if (this.aclCached[cacheKey]) {
3836
return this.aclCached[cacheKey]

test/integration/acl-tls-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ describe.skip('ACL with WebID+TLS', function () {
488488
done()
489489
})
490490
})
491-
it('user1 should be able to access test directory BEEP BOOP REMOVE THIS', function (done) {
491+
it('user1 should be able to access test directory', function (done) {
492492
var options = createOptions('/acl-tls/read-acl/', 'user1')
493493
request.head(options, function (error, response, body) {
494494
assert.equal(error, null)

0 commit comments

Comments
 (0)