Skip to content
This repository was archived by the owner on May 14, 2024. It is now read-only.

Commit 0a3702e

Browse files
committed
Fix search attributes
1 parent 9038aeb commit 0a3702e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"@ldapjs/controls": "2.0.0-rc.1",
1818
"@ldapjs/dn": "1.0.0-rc.1",
1919
"@ldapjs/filter": "2.0.0-rc.5",
20-
"@ldapjs/messages": "1.0.0-rc.2",
20+
"@ldapjs/messages": "1.0.0-rc.3",
2121
"@ldapjs/protocol": "^1.0.0",
2222
"abstract-logging": "^2.0.0",
2323
"assert-plus": "^1.0.0",

test/client.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1253,7 +1253,7 @@ tap.test('GH-21 binary attributes', function (t) {
12531253
tap.test('GH-23 case insensitive attribute filtering', function (t) {
12541254
const opts = {
12551255
filter: '(objectclass=*)',
1256-
attributes: ['@Cn']
1256+
attributes: ['Cn']
12571257
}
12581258
t.context.client.search('cn=test, ' + SUFFIX, opts, function (err, res) {
12591259
t.error(err)

test/laundry.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ tap.test('GH-49 Client errors on bad attributes', function (t) {
118118
const searchOpts = {
119119
filter: 'cn=*ogo*',
120120
scope: 'one',
121-
attributes: '@dn'
121+
attributes: 'dn'
122122
}
123123
return search(t, searchOpts)
124124
})

0 commit comments

Comments
 (0)