]> gitweb.michael.orlitzky.com - sage.d.git/blobdiff - mjo/eja/eja_utils.py
eja: fix some tests that broke with the gram-schmidt commit.
[sage.d.git] / mjo / eja / eja_utils.py
index 8f2d8f32b0dd2e2cf6e693166688d6be1f3ea999..d486b4c604723b2a3e8544c2cf2644edb733d713 100644 (file)
@@ -24,7 +24,7 @@ def gram_schmidt(v):
         sage: v3 = vector(QQ,(2,1,-1))
         sage: v = [v1,v2,v3]
         sage: u = gram_schmidt(v)
-        sage: [ u_i.inner_product(u_i).sqrt() == 1 for u_i in u ]
+        sage: all( u_i.inner_product(u_i).sqrt() == 1 for u_i in u )
         True
         sage: u[0].inner_product(u[1]) == 0
         True