diff options
author | Timothy Flynn <trflynn89@pm.me> | 2023-01-13 10:52:17 -0500 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-01-15 01:00:20 +0000 |
commit | 0ddc2e1f503e8566c7f153741739d380fc05a09f (patch) | |
tree | bb88a46c6d9071c779ad9464ddd572733a19f4f4 /Tests/LibCrypto | |
parent | 63c814fa2f05e6278fdbeb084f99e851c28006c8 (diff) | |
download | serenity-0ddc2e1f503e8566c7f153741739d380fc05a09f.zip |
LibCrypto+Everywhere: Rename *BigInteger::to_base to to_base_deprecated
Diffstat (limited to 'Tests/LibCrypto')
-rw-r--r-- | Tests/LibCrypto/TestBigInteger.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tests/LibCrypto/TestBigInteger.cpp b/Tests/LibCrypto/TestBigInteger.cpp index d2103ae8cd..338ec233d1 100644 --- a/Tests/LibCrypto/TestBigInteger.cpp +++ b/Tests/LibCrypto/TestBigInteger.cpp @@ -243,7 +243,7 @@ TEST_CASE(test_unsigned_bigint_base10_to_string) { auto result = Crypto::UnsignedBigInteger { Vector<u32> { 3806301393, 954919431, 3879607298, 721 } - }.to_base(10); + }.to_base_deprecated(10); EXPECT_EQ(result, "57195071295721390579057195715793"); } @@ -386,10 +386,10 @@ TEST_CASE(test_bigint_random_distribution) "100000000000000000000000000000"_bigint); // 10**29 if (actual_result < "100000000000000000000"_bigint) { // 10**20 FAIL("Too small"); - outln("The generated number {} is extremely small. This *can* happen by pure chance, but should happen only once in a billion times. So it's probably an error.", actual_result.to_base(10)); + outln("The generated number {} is extremely small. This *can* happen by pure chance, but should happen only once in a billion times. So it's probably an error.", actual_result.to_base_deprecated(10)); } else if ("99999999900000000000000000000"_bigint < actual_result) { // 10**29 - 10**20 FAIL("Too large"); - outln("The generated number {} is extremely large. This *can* happen by pure chance, but should happen only once in a billion times. So it's probably an error.", actual_result.to_base(10)); + outln("The generated number {} is extremely large. This *can* happen by pure chance, but should happen only once in a billion times. So it's probably an error.", actual_result.to_base_deprecated(10)); } } |