Corrected the tests

This commit is contained in:
Amitabh.Tiwari 2021-06-28 18:57:48 +05:30
parent b7f31513f8
commit 67f11db211
1 changed files with 1 additions and 1 deletions

View File

@ -39,6 +39,6 @@ public class StringToBigIntegerUnitTest {
final String inputString = "290f98";
byte[] inputStringBytes = inputString.getBytes();
BigInteger result = new BigInteger(inputStringBytes);
assertEquals("Hello Baeldung", new String(result.toByteArray()));
assertEquals("290f98", new String(result.toByteArray()));
}
}