diff --git a/test/test_gprinter.py b/test/test_gprinter.py index 39f29fc7..edb2c7ad 100644 --- a/test/test_gprinter.py +++ b/test/test_gprinter.py @@ -39,7 +39,7 @@ def test_gxpdf(self): B = g3.mv('B', 'bivector') Fmt(1) # Set Fmt globally gprint(r'\mathbf{B} =', B) # B will be bold. - gprint(r'\mathbf{B} =', B.Fmt(1)) # Fmt(3) here only. + gprint(r'\mathbf{B} =', B.Fmt(3)) # Fmt(3) here only. gprint(r'\mathbf{B} =', B) # Global Fmt remembered. gprint(r'\mathbf{B}^2 =', B*B)