Skip to content

Commit

Permalink
fix file path
Browse files Browse the repository at this point in the history
  • Loading branch information
ramsessanchez committed Feb 28, 2024
1 parent 8f0b05e commit 826ad00
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -322,8 +322,7 @@ void getRequestFromRequestInformationHasCorrectContentLength_JsonPayload() throw
@Test
void getRequestFromRequestInformationIncludesContentLength_FilePayload() throws Exception {
final var authenticationProviderMock = mock(AuthenticationProvider.class);
final var testFile = new File(".\\src\\test\\resources\\helloWorld.txt");
System.out.println(testFile.getCanonicalPath());
final var testFile = new File("./src/test/resources/helloWorld.txt");
final var requestInformation = new RequestInformation();

requestInformation.setUri(new URI("https://localhost"));
Expand Down

0 comments on commit 826ad00

Please sign in to comment.