Skip to content

Commit

Permalink
fixed unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
thjaeckle committed Nov 8, 2024
1 parent ac7bd5a commit 3dd1cfe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public void api2ThingsUriIsShortened() {

@Test
public void api2ThingsSearchUriIsShortened() {
final var expectedUri = URI.create("/api/2/search/things" + TraceInformationGenerator.SHORTENED_PATH_SUFFIX);
final var expectedUri = URI.create("/api/2/search/things");

assertThat(underTest.apply("/api/2/search/things"))
.isEqualTo(TraceInformation.newInstance(expectedUri, TagSet.ofTag(getRequestUriTag(expectedUri))));
Expand Down

0 comments on commit 3dd1cfe

Please sign in to comment.