Skip to content

Commit

Permalink
test: Delete %20 from route path as Jetty 12 refuses to handle it (#1…
Browse files Browse the repository at this point in the history
…7413)

Co-authored-by: Peter Czuczor <[email protected]>
  • Loading branch information
Artur- and czp13 authored Aug 11, 2023
1 parent bd9f99d commit a108dae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import com.vaadin.flow.router.Route;
import com.vaadin.flow.router.RouterLink;

@Route(value = "special åäö $%20'´`")
@Route(value = "special åäö $'´`")
public class SpecialCharactersView extends Span {

public SpecialCharactersView() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
public class NavigateBetweenViewsIT extends ChromeBrowserTest {

private static final String PARAM_VALUE_SPECIAL_CHARACTERS = "a=b%20 `'¨åäö";
private static final String ROUTE_SPECIAL_CHARACTERS = "special åäö $%20'´`";
private static final String ROUTE_SPECIAL_CHARACTERS = "special åäö $'´`";

@Test
public void openFlowView_navigateToTsView_navigationSuccessful() {
Expand Down

0 comments on commit a108dae

Please sign in to comment.