test_support:  add a docstring to vereq().
test_complex:  repair new test's usage of vereq().
diff --git a/Lib/test/test_complex.py b/Lib/test/test_complex.py
index 1fa0ee0..ff7bb14 100644
--- a/Lib/test/test_complex.py
+++ b/Lib/test/test_complex.py
@@ -63,8 +63,7 @@
 if complex(0.0, 0.0):
     raise TestFailed("complex(0.0, 0.0) should be false")
 
-if vereq(complex(5.3, 9.8).conjugate(), 5.3-9.8j):
-    raise TestFailed("complex.conjugate() didn't work")
+vereq(complex(5.3, 9.8).conjugate(), 5.3-9.8j)
 
 try:
     print int(5+3j)