@@ -357,7 +357,7 @@ suite('Hover Definition', () => {
357357 `generator of your own devising: in that case, override the following${ EOL } ` +
358358 `methods: random(), seed(), getstate(), and setstate().${ EOL } ` +
359359 `Optionally, implement a getrandbits() method so that randrange()${ EOL } ` +
360- `can cover arbitrarily large ranges.`
360+ `can cover arbitrarily large ranges.` ;
361361
362362 assert . equal ( def [ 0 ] . contents [ 1 ] , documentation , 'Invalid conents' ) ;
363363 } ) . then ( done , done ) ;
@@ -420,7 +420,7 @@ suite('Hover Definition', () => {
420420 assert . equal ( def . length , 1 , 'Definition lenght is incorrect' ) ;
421421 assert . equal ( `${ def [ 0 ] . range . start . line } ,${ def [ 0 ] . range . start . character } ` , '14,9' , 'Start position is incorrect' ) ;
422422 assert . equal ( `${ def [ 0 ] . range . end . line } ,${ def [ 0 ] . range . end . character } ` , '14,15' , 'End position is incorrect' ) ;
423- const signature = `" class Thread(self, group=None, target=None, name=None,${ EOL } args=(), kwargs=None, verbose=None)" ` ;
423+ const signature = `class Thread(self, group=None, target=None, name=None,${ EOL } args=(), kwargs=None, verbose=None)` ;
424424 assert . equal ( def [ 0 ] . contents [ 0 ] . value , signature , 'Invalid content items' ) ;
425425 const documentation = `A class that represents a thread of control.${ EOL } ${ EOL } This class can be safely subclassed in a limited fashion.` ;
426426 assert . equal ( def [ 0 ] . contents [ 1 ] , documentation , 'Invalid conents' ) ;
0 commit comments