@@ -86,7 +86,7 @@ describe.only('RecrawlWarning', function() {
86
86
it ( 'new message' , function ( ) {
87
87
assert . equal (
88
88
RecrawlWarning . isRecrawlWarningDupe (
89
- 'Recrawled this watch 1 times, most recently because:\n\ /foo\ /bar\ /baz:'
89
+ 'Recrawled this watch 1 times, most recently because:\n/foo/bar/baz:'
90
90
) ,
91
91
false
92
92
) ;
@@ -95,13 +95,13 @@ describe.only('RecrawlWarning', function() {
95
95
it ( 'same message twice' , function ( ) {
96
96
assert . equal (
97
97
RecrawlWarning . isRecrawlWarningDupe (
98
- 'Recrawled this watch 2 times, most recently because:\n\ /foo\ /bar\ /baz:'
98
+ 'Recrawled this watch 2 times, most recently because:\n/foo/bar/baz:'
99
99
) ,
100
100
false
101
101
) ;
102
102
assert . equal (
103
103
RecrawlWarning . isRecrawlWarningDupe (
104
- 'Recrawled this watch 2 times, most recently because:\n\ /foo\ /bar\ /baz:'
104
+ 'Recrawled this watch 2 times, most recently because:\n/foo/bar/baz:'
105
105
) ,
106
106
true
107
107
) ;
@@ -110,13 +110,13 @@ describe.only('RecrawlWarning', function() {
110
110
it ( 'same count, but different root twice' , function ( ) {
111
111
assert . equal (
112
112
RecrawlWarning . isRecrawlWarningDupe (
113
- 'Recrawled this watch 2 times, most recently because:\n\ /foo\ /bar\ /baz:'
113
+ 'Recrawled this watch 2 times, most recently because:\n/foo/bar/baz:'
114
114
) ,
115
115
false
116
116
) ;
117
117
assert . equal (
118
118
RecrawlWarning . isRecrawlWarningDupe (
119
- 'Recrawled this watch 2 times, most recently because:\n\ /baz\ /bar\ /baz:'
119
+ 'Recrawled this watch 2 times, most recently because:\n/baz/bar/baz:'
120
120
) ,
121
121
false
122
122
) ;
@@ -125,19 +125,19 @@ describe.only('RecrawlWarning', function() {
125
125
it ( 'incrementing count, but fixed root' , function ( ) {
126
126
assert . equal (
127
127
RecrawlWarning . isRecrawlWarningDupe (
128
- 'Recrawled this watch 2 times, most recently because:\n\ /foo\ /bar\ /baz:'
128
+ 'Recrawled this watch 2 times, most recently because:\n/foo/bar/baz:'
129
129
) ,
130
130
false
131
131
) ;
132
132
assert . equal (
133
133
RecrawlWarning . isRecrawlWarningDupe (
134
- 'Recrawled this watch 3 times, most recently because:\n\ /foo\ /bar\ /baz:'
134
+ 'Recrawled this watch 3 times, most recently because:\n/foo/bar/baz:'
135
135
) ,
136
136
false
137
137
) ;
138
138
assert . equal (
139
139
RecrawlWarning . isRecrawlWarningDupe (
140
- 'Recrawled this watch 4 times, most recently because:\n\ /foo\ /bar\ /baz:'
140
+ 'Recrawled this watch 4 times, most recently because:\n/foo/bar/baz:'
141
141
) ,
142
142
false
143
143
) ;
@@ -146,19 +146,19 @@ describe.only('RecrawlWarning', function() {
146
146
it ( 'decrementing count, but fixed root' , function ( ) {
147
147
assert . equal (
148
148
RecrawlWarning . isRecrawlWarningDupe (
149
- 'Recrawled this watch 4 times, most recently because:\n\ /foo\ /bar\ /baz:'
149
+ 'Recrawled this watch 4 times, most recently because:\n/foo/bar/baz:'
150
150
) ,
151
151
false
152
152
) ;
153
153
assert . equal (
154
154
RecrawlWarning . isRecrawlWarningDupe (
155
- 'Recrawled this watch 3 times, most recently because:\n\ /foo\ /bar\ /baz:'
155
+ 'Recrawled this watch 3 times, most recently because:\n/foo/bar/baz:'
156
156
) ,
157
157
true
158
158
) ;
159
159
assert . equal (
160
160
RecrawlWarning . isRecrawlWarningDupe (
161
- 'Recrawled this watch 2 times, most recently because:\n\ /foo\ /bar\ /baz:'
161
+ 'Recrawled this watch 2 times, most recently because:\n/foo/bar/baz:'
162
162
) ,
163
163
true
164
164
) ;
0 commit comments