@@ -682,7 +682,7 @@ tap.test('search basic', function (t) {
682
682
res . on ( 'searchEntry' , function ( entry ) {
683
683
t . ok ( entry )
684
684
t . ok ( entry instanceof ldap . SearchEntry )
685
- t . equal ( entry . dn . toString ( ) , 'cn=test, ' + SUFFIX )
685
+ t . equal ( entry . dn . toString ( ) , 'cn=test,' + SUFFIX )
686
686
t . ok ( entry . attributes )
687
687
t . ok ( entry . attributes . length )
688
688
t . equal ( entry . attributes [ 0 ] . type , 'cn' )
@@ -1118,7 +1118,7 @@ tap.test('GH-21 binary attributes', function (t) {
1118
1118
res . on ( 'searchEntry' , function ( entry ) {
1119
1119
t . ok ( entry )
1120
1120
t . ok ( entry instanceof ldap . SearchEntry )
1121
- t . equal ( entry . dn . toString ( ) , 'cn=bin, ' + SUFFIX )
1121
+ t . equal ( entry . dn . toString ( ) , 'cn=bin,' + SUFFIX )
1122
1122
t . ok ( entry . attributes )
1123
1123
t . ok ( entry . attributes . length )
1124
1124
t . equal ( entry . attributes [ 0 ] . type , 'foo;binary' )
@@ -1159,7 +1159,7 @@ tap.test('GH-23 case insensitive attribute filtering', function (t) {
1159
1159
res . on ( 'searchEntry' , function ( entry ) {
1160
1160
t . ok ( entry )
1161
1161
t . ok ( entry instanceof ldap . SearchEntry )
1162
- t . equal ( entry . dn . toString ( ) , 'cn=test, ' + SUFFIX )
1162
+ t . equal ( entry . dn . toString ( ) , 'cn=test,' + SUFFIX )
1163
1163
t . ok ( entry . attributes )
1164
1164
t . ok ( entry . attributes . length )
1165
1165
t . equal ( entry . attributes [ 0 ] . type , 'cn' )
@@ -1191,7 +1191,7 @@ tap.test('GH-24 attribute selection of *', function (t) {
1191
1191
res . on ( 'searchEntry' , function ( entry ) {
1192
1192
t . ok ( entry )
1193
1193
t . ok ( entry instanceof ldap . SearchEntry )
1194
- t . equal ( entry . dn . toString ( ) , 'cn=test, ' + SUFFIX )
1194
+ t . equal ( entry . dn . toString ( ) , 'cn=test,' + SUFFIX )
1195
1195
t . ok ( entry . attributes )
1196
1196
t . ok ( entry . attributes . length )
1197
1197
t . equal ( entry . attributes [ 0 ] . type , 'cn' )
0 commit comments