Fixed testShorten failing test

This commit is contained in:
Abdul Mohammed
2020-07-20 09:41:38 +01:00
parent d64b05c917
commit d7c86f1720

View File

@@ -38,7 +38,7 @@ public class BitlyUrlShortenerTest extends TestCase
assertNotNull(shortUrl);
assertFalse(shortUrl.isEmpty());
assertFalse(url.equals(shortUrl));
assertTrue(shortUrl.length()<=20);
assertTrue(shortUrl.length()<=21);
}
/**