Skip to content

Commit 65f39b1

Browse files
committed
Issue 11362 - Unit test assertion failure messages not printed
Issue URL: http://d.puremagic.com/issues/show_bug.cgi?id=11362 Regression commit from pull #636: db7dc40
1 parent 330e19d commit 65f39b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/runtime.d

+1-1
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ extern (C) bool runModuleUnitTests()
385385
{
386386
void printErr(const(char)[] buf)
387387
{
388-
.fprintf(.stderr, "%.s", cast(int)buf.length, buf.ptr);
388+
.fprintf(.stderr, "%.*s", cast(int)buf.length, buf.ptr);
389389
}
390390

391391
size_t failed = 0;

0 commit comments

Comments
 (0)