[TEST] replace randomAsciiAlphanumOfLengthBetween with randomAsciiLettersOfLengthBetween

This was wrongly changed from the corresponding deprecated method.
This commit is contained in:
javanna 2018-02-21 16:34:57 +01:00 committed by Luca Cavanna
parent 9a95be35cf
commit e5bceee4a7
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ public class RestClientSingleHostIntegTests extends RestClientTestCase {
@BeforeClass
public static void startHttpServer() throws Exception {
pathPrefix = randomBoolean() ? "/testPathPrefix/" + randomAsciiAlphanumOfLengthBetween(1, 5) : "";
pathPrefix = randomBoolean() ? "/testPathPrefix/" + randomAsciiLettersOfLengthBetween(1, 5) : "";
httpServer = createHttpServer();
defaultHeaders = RestClientTestUtil.randomHeaders(getRandom(), "Header-default");
restClient = createRestClient(false, true);