Fix broken test

This commit is contained in:
dotasek 2023-06-05 18:19:50 -04:00
parent a8051d6c45
commit b4a34e0bc0
1 changed files with 2 additions and 2 deletions

View File

@ -43,8 +43,8 @@ public class DisplayTests {
final String myTestString = "The {{DUMMY_A}} jumps over the {{DUMMY_B}}.";
final String[][] placeHolders = {
{ "\\{\\{DUMMY_A\\}\\}", "quick brown fox"},
{ "\\{\\{DUMMY_B\\}\\}", "lazy dog"},
{ "DUMMY_A", "quick brown fox"},
{ "DUMMY_B", "lazy dog"},
};
final String expectedOutput = "The quick brown fox jumps over the lazy dog.";