@@ -50,7 +50,7 @@ public void testMarkerPatternSelector(@Named("List") final ListAppender app) {
50
50
final String expect = String .format (
51
51
"[TRACE] TestMarkerPatternSelector ====== "
52
52
+ "o.a.l.l.c.PatternSelectorTest.testMarkerPatternSelector:%d Enter ======%n" ,
53
- CURRENT_LINE + 4 );
53
+ CURRENT_LINE + 5 );
54
54
assertEquals (expect , messages .get (0 ));
55
55
assertEquals ("[INFO ] TestMarkerPatternSelector Hello World" + Strings .LINE_SEPARATOR , messages .get (1 ));
56
56
app .clear ();
@@ -73,12 +73,12 @@ public void testScriptPatternSelector(@Named("List2") final ListAppender app) {
73
73
String expect = String .format (
74
74
"[TRACE] TestScriptPatternSelector ====== "
75
75
+ "o.a.l.l.c.PatternSelectorTest.testScriptPatternSelector:%d Enter ======%n" ,
76
- CURRENT_LINE + 26 );
76
+ CURRENT_LINE + 27 );
77
77
assertEquals (expect , messages .get (0 ));
78
78
expect = String .format (
79
79
"[INFO ] TestScriptPatternSelector o.a.l.l.c.PatternSelectorTest.testScriptPatternSelector.%d "
80
80
+ "Hello World%n" ,
81
- CURRENT_LINE + 27 );
81
+ CURRENT_LINE + 28 );
82
82
assertEquals (expect , messages .get (1 ));
83
83
assertEquals ("[INFO ] NoLocation No location information" + Strings .LINE_SEPARATOR , messages .get (2 ));
84
84
app .clear ();
@@ -101,12 +101,12 @@ public void testJavaScriptPatternSelector(@Named("List3") final ListAppender app
101
101
String expect = String .format (
102
102
"[TRACE] TestJavaScriptPatternSelector ====== "
103
103
+ "o.a.l.l.c.PatternSelectorTest.testJavaScriptPatternSelector:%d Enter ======%n" ,
104
- CURRENT_LINE + 54 );
104
+ CURRENT_LINE + 55 );
105
105
assertEquals (expect , messages .get (0 ));
106
106
expect = String .format (
107
107
"[INFO ] TestJavaScriptPatternSelector "
108
108
+ "o.a.l.l.c.PatternSelectorTest.testJavaScriptPatternSelector.%d Hello World%n" ,
109
- CURRENT_LINE + 55 );
109
+ CURRENT_LINE + 56 );
110
110
assertEquals (expect , messages .get (1 ));
111
111
assertEquals ("[INFO ] JavascriptNoLocation No location information" + Strings .LINE_SEPARATOR , messages .get (2 ));
112
112
app .clear ();
0 commit comments