Corrected the tests

This commit is contained in:
Amitabh.Tiwari
2021-06-28 18:57:48 +05:30
parent 5b1f24f5a8
commit 365e8cca05

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()));
}
}