REPO-5076 BitlyUrlShortenerTest failing as URL is now longer

This commit is contained in:
Alan Davis
2020-03-24 10:09:58 +00:00
parent 2e16d84686
commit f3364098c2

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() <= url.length());
}
/**