Skip to content

Commit 3adaeaf

Browse files
committed
Fixed spec test Should_fold_descriptions_excluding_query_and_noise
1 parent d508fc2 commit 3adaeaf

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/PickAll.Specs/Outcomes/ImproveSpecs.cs

+6-6
Original file line numberDiff line numberDiff line change
@@ -81,12 +81,12 @@ public async void Should_fold_descriptions_excluding_query_and_noise()
8181
sut.Context = context;
8282

8383
var titles = WaffleBuilder.GenerateTitle(3, title => title
84-
.Intersperse("massive".Replicate(50))
85-
.Intersperse("catch".Replicate(25))
86-
.Intersperse("a".Replicate(30))
87-
.Intersperse("repetition".Replicate(50))
88-
.Intersperse("word".Replicate(25))
89-
.Intersperse("of").Replicate(30));
84+
.Intersperse("massive".Replicate(50, separator: " "))
85+
.Intersperse("catch".Replicate(25, separator: " "))
86+
.Intersperse("a".Replicate(30, separator: " "))
87+
.Intersperse("repetition".Replicate(50, separator: " "))
88+
.Intersperse("word".Replicate(25, separator: " "))
89+
.Intersperse("of").Replicate(30, separator: " "));
9090

9191
var results = new ResultInfo[] {
9292
ResultInfoHelper.OnlyDescription(titles.First()),

0 commit comments

Comments
 (0)