Skip to content

Commit 8cf078e

Browse files
robodairDonJayamanne
authored andcommitted
Fix Hover Definition Variable Test for Python 3.5 (#1013)
* Fix autocomplete & hover unit tests * Fix Hover Definition Variable Test for python 3.5
1 parent 75be488 commit 8cf078e

1 file changed

Lines changed: 4 additions & 7 deletions

File tree

src/test/extension.autocomplete.test.ts

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -466,18 +466,15 @@ suite('Hover Definition', () => {
466466
Random number generator base class used by bound module functions.
467467
468468
Used to instantiate instances of Random to get generators that don't
469-
share state. Especially useful for multi-threaded programs, creating
470-
a different instance of Random for each thread, and using the jumpahead()
471-
method to ensure that the generated sequences seen by each thread don't
472-
overlap.
469+
share state.
473470
474471
Class Random can also be subclassed if you want to use a different basic
475472
generator of your own devising: in that case, override the following
476473
477-
\`methods\` random(), seed(), getstate(), setstate() and jumpahead().
474+
\`methods\` random(), seed(), getstate(), and setstate().
478475
479-
Optionally, implement a getrandbits() method so that randrange() can cover
480-
arbitrarily large ranges.
476+
Optionally, implement a getrandbits() method so that randrange()
477+
can cover arbitrarily large ranges.
481478
`,
482479
'Invalid content items');
483480
}).then(done, done);

0 commit comments

Comments
 (0)