Skip to content

Commit

Permalink
test: degug in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Dankoy committed Dec 12, 2024
1 parent aeef34e commit 6c1908c
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ void testTranslationSuccess() throws InterruptedException {

RecordedRequest recordedRequest = server.takeRequest();

System.out.println(recordedRequest.getRequestLine());

assertEquals(
mockUrl
+ "?client=client&sl=ru&tl=en&ie=UTF-8&oe=UTF-8&hl=en&otf=0&ssel=0&tsel=0&dt=option1&q=text",
Expand All @@ -111,6 +113,8 @@ void testTranslationError_ExpectsGoogleTranslatorException() throws InterruptedE

RecordedRequest recordedRequest = server.takeRequest();

System.out.println(recordedRequest.getRequestLine());

assertEquals(
mockUrl
+ "?client=client&sl=ru&tl=en&ie=UTF-8&oe=UTF-8&hl=en&otf=0&ssel=0&tsel=0&dt=option1&q=text",
Expand All @@ -131,6 +135,8 @@ void testTranslationError_ExpectsParsingException() throws InterruptedException

RecordedRequest recordedRequest = server.takeRequest();

System.out.println(recordedRequest.getRequestLine());

assertEquals(
mockUrl
+ "?client=client&sl=ru&tl=en&ie=UTF-8&oe=UTF-8&hl=en&otf=0&ssel=0&tsel=0&dt=option1&q=text",
Expand Down

0 comments on commit 6c1908c

Please sign in to comment.