Skip to content

Commit 24fa6f5

Browse files
committed
fix comments.redirect+critical+fixes+to+stable
- expected comment was split and `~`ed, but now format only applied to the tail
1 parent eb5188e commit 24fa6f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/comments.d

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ unittest
237237
(scope HTTPServerRequest req, scope HTTPServerResponse res){
238238
assert(req.method == HTTPMethod.POST);
239239
auto expectedComment =
240-
"### Bugzilla references
240+
("### Bugzilla references
241241
242242
Auto-close | Bugzilla | Description
243243
--- | --- | ---
@@ -248,7 +248,7 @@ Auto-close | Bugzilla | Description
248248
- Regression or critical bug fixes should always target the `stable` branch." ~
249249
" Learn more about [rebasing to `stable`](https://wiki.dlang.org/Starting_as_a_Contributor#Stable_Branch) or" ~
250250
" the [D release process](https://github.com/dlang/DIPs/blob/master/DIPs/archive/DIP75.md#branching-strategy).
251-
".format(bugzillaURL);
251+
").format(bugzillaURL);
252252
assert(req.json["body"].get!string.canFind(expectedComment));
253253
res.writeVoidBody;
254254
},

0 commit comments

Comments
 (0)