Bugfix: Not enough arguments to Fatalf.

This commit is contained in:
Brendan McMillion
2015-11-23 10:43:39 -08:00
parent c5da2f748e
commit 95e414474a

View File

@@ -45,6 +45,6 @@ func TestFieldElemInvert(t *testing.T) {
xy, yx := x.Mul(xInv), xInv.Mul(x)
if !xy.IsOne() || !yx.IsOne() {
t.Fatalf("Multiplication by inverse failed!\nx = %x\nxInv = %x\nxInv*x = %x\nx*xInv = %x", x, yx, xy)
t.Fatalf("Multiplication by inverse failed!\nx = %x\nxInv = %x\nxInv*x = %x\nx*xInv = %x", x, xInv, yx, xy)
}
}