Skip to content

Commit d508fc2

Browse files
committed
Fixed spec test Should_fold_descriptions_excluding_query
1 parent 77342ff commit d508fc2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/PickAll.Specs/Outcomes/ImproveSpecs.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ public async void Should_fold_descriptions_excluding_query()
5050
sut.Context = context;
5151

5252
var titles = WaffleBuilder.GenerateTitle(3, title => title
53-
.Intersperse("massive".Replicate(50))
54-
.Intersperse("something".Replicate(25))
55-
.Intersperse("repetition".Replicate(50))
56-
.Intersperse("hello".Replicate(25)));
53+
.Intersperse("massive".Replicate(50, separator: " "))
54+
.Intersperse("something".Replicate(25, separator: " "))
55+
.Intersperse("repetition".Replicate(50, separator: " "))
56+
.Intersperse("hello".Replicate(25, separator: " ")));
5757

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

0 commit comments

Comments
 (0)