Minor fix.

This commit is contained in:
Peter Goodman
2018-01-18 14:24:08 -05:00
parent 2eaeb7480c
commit ee80baa0ea
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ TEST(PrimePolynomial, OnlyGeneratesPrimes) {
ASSUME_GT(z, 1);
ASSUME_LT(y, poly);
ASSUME_LT(z, poly);
ASSERT_NE(poly, y * z)
ASSERT(poly != y * z)
<< x << "^2 + " << x << " + 41 is not prime";
ASSERT(IsPrime(Pump(poly)))
<< x << "^2 + " << x << " + 41 is not prime";