diff options
Diffstat (limited to 'src/tests/test_bigint.cpp')
-rw-r--r-- | src/tests/test_bigint.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tests/test_bigint.cpp b/src/tests/test_bigint.cpp index 3ea57d584..2e41e0004 100644 --- a/src/tests/test_bigint.cpp +++ b/src/tests/test_bigint.cpp @@ -446,7 +446,8 @@ class BigInt_GCD_Test final : public Text_Based_Test const BigInt g = Botan::gcd(x, y); - result.test_eq("gcd", expected, g); + result.test_eq("gcd", g, expected); + return result; } }; |