Issue #3657: fix occasional test_pickletools failures.
diff --git a/Lib/pickletools.py b/Lib/pickletools.py
index ae02a36..7121c2a 100644
--- a/Lib/pickletools.py
+++ b/Lib/pickletools.py
@@ -2083,11 +2083,11 @@
 
 Exercise the INST/OBJ/BUILD family.
 
->>> import random
->>> dis(pickle.dumps(random.random, 0))
-    0: c    GLOBAL     'random random'
-   15: p    PUT        0
-   18: .    STOP
+>>> import pickletools
+>>> dis(pickle.dumps(pickletools.dis, 0))
+    0: c    GLOBAL     'pickletools dis'
+   17: p    PUT        0
+   20: .    STOP
 highest protocol among opcodes = 0
 
 >>> from pickletools import _Example