Skip to content

Commit

Permalink
OP-1157 use text block instead of concatenation (JDK 15) (#1446)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbmalkovsky authored Nov 9, 2024
1 parent e7f76d7 commit 31e3b1d
Showing 1 changed file with 9 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,15 @@

public class TestApiConfigProvider {

private static final String CONFIG_JSON = "{\n" +
" \"1.15.0\": {\n" +
" \"parameter\": \"https://version-url.com\"\n" +
" },\n" +
" \"default\": {\n" +
" \"parameter\": \"https://default-url.com\"\n" +
" }\n" +
"}";
private static final String CONFIG_JSON = """
{
"1.15.0": {
"parameter": "https://version-url.com"
},
"default": {
"parameter": "https://default-url.com"
}
}""";

private ClientAndServer mockServer;

Expand Down

0 comments on commit 31e3b1d

Please sign in to comment.